Skip to content

Commit

Permalink
pyproject: Add more checks
Browse files Browse the repository at this point in the history
  • Loading branch information
tomba committed Nov 2, 2024
1 parent 326b60b commit b22fe37
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ line-length = 100
extend-exclude = ['v4l2/uapi/']

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

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

0 comments on commit b22fe37

Please sign in to comment.