Skip to content

Commit

Permalink
Add additional Ruff checks
Browse files Browse the repository at this point in the history
  • Loading branch information
danyeaw authored and pbor committed Jan 20, 2024
1 parent 3c5f084 commit c494f24
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,20 @@ deps = pytest
ignore = ["E501"]
line-length = 88
select = [
"B",
"B9",
"C",
"E",
"F",
"W",
]
extend-select = ["I"]

[tool.ruff.mccabe]
max-complexity = 20

[tool.ruff.lint.flake8-bugbear]
extend-immutable-calls = ["typer.Argument", "typer.Option"]

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit c494f24

Please sign in to comment.