Skip to content

Commit

Permalink
pyproject: More ruff checks
Browse files Browse the repository at this point in the history
  • Loading branch information
tomba committed Nov 2, 2024
1 parent cd14fa5 commit 3be3dff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ qt = ['PyQt6']
line-length = 100

[tool.ruff.lint]
extend-select = ['E', 'W', 'F', 'FA', 'Q']
ignore = ['E741', 'E501', 'Q001'] # TODO: fix E501
extend-select = ['E', 'W', 'F', 'FA', 'Q', 'UP', 'PLE', 'PLW']
ignore = ['E741', 'E501', 'Q001', 'UP032'] # TODO: fix E501

[tool.ruff.lint.per-file-ignores]
'__init__.py' = ['F401', 'F403']
Expand Down

0 comments on commit 3be3dff

Please sign in to comment.