Skip to content

Commit

Permalink
Merge pull request #556 from akaihola/ruff
Browse files Browse the repository at this point in the history
Ignore builtin argument shadowing in `ruff` linter
  • Loading branch information
akaihola authored Mar 17, 2024
2 parents be77262 + 9df40dd commit 357befe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ target-version = "py38"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"A002", # builtin-argument-shadowing
"ANN101", # Missing type annotation for `self` in method
"D203", # One blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
Expand Down

0 comments on commit 357befe

Please sign in to comment.