Skip to content

Commit

Permalink
Add remaining unfixed ruff rules to ignore for now
Browse files Browse the repository at this point in the history
These should be checked in the future.
  • Loading branch information
153957 committed Apr 27, 2024
1 parent 74e8f85 commit ced65ee
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,39 @@ ignore = [
'TD003', # Allow TODO without issue link
'TID252', # Allow relative imports
'TRY003', # Specific messages for common exception classes

# TODO these still need to be checked (i.e. ignored or fixed)
'ARG001',
'ARG003',
'ARG005',
'B018',
'C901',
'FBT003',
'FIX002',
'G002',
'G004',
'NPY002',
'PLR0911',
'PLR0912',
'PLR0915',
'PLR2004',
'PLW2901',
'RET503',
'RUF005',
'RUF012',
'S103',
'S108',
'S310',
'S602',
'S603',
'S604',
'S607',
'SIM102',
'SIM105',
'SIM115',
'TRY301',
'TRY400',
'UP031',
]

[tool.ruff.lint.per-file-ignores]
Expand Down

0 comments on commit ced65ee

Please sign in to comment.