Skip to content

Commit

Permalink
[python] Set includes and excludes when running ruff manually.
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke authored and endJunction committed Oct 17, 2023
1 parent af07cee commit 7d2e8cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ unfixable = [
"T20", # Removes print statements
"F841", # Removes unused variables
]
exclude = []
include = ["*.py", "*.pyi", "**/pyproject.toml", "*.ipynb"]
exclude = ["ThirdParty/"]
flake8-unused-arguments.ignore-variadic-names = true
line-length = 80

Expand Down

0 comments on commit 7d2e8cf

Please sign in to comment.