Skip to content

Commit

Permalink
doc: Adjust pyproject.toml as per ruff doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gmuloc committed Sep 10, 2024
1 parent 6f45250 commit ca79d8b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -330,14 +330,13 @@ target-version = "py39"
select = ["ALL"]
ignore = [
"ANN101", # Missing type annotation for `self` in method - we know what self is..
"D203", # Ignoring conflicting D* warnings - one-blank-line-before-class
"D213", # Ignoring conflicting D* warnings - multi-line-summary-second-line
"COM812", # Ignoring conflicting rules that may cause conflicts when used with the formatter
"ISC001", # Ignoring conflicting rules that may cause conflicts when used with the formatter
"TD002", # We don't have require authors in TODO
"TD003", # We don't have an issue link for all TODOs today
"FIX002", # Line contains TODO - ignoring for ruff for now
"F821", # Disable undefined-name until resolution of #10451
"D107", "D203", "D212", "D213", "D402", "D413", "D415", "D416", "D417", # numpy docstring style ignore as per doc
]

# Allow autofix for all enabled rules (when `--fix`) is provided.
Expand Down

0 comments on commit ca79d8b

Please sign in to comment.