Skip to content

Commit

Permalink
Disable more ruff rules (#1610)
Browse files Browse the repository at this point in the history
They are not compatible with `ruff format` or are actual anti-patterns.
  • Loading branch information
DimitriPapadopoulos committed May 24, 2024
1 parent 7b604b8 commit db6372a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,23 @@ ignore = [
# Fix these codes later
"G004",
"PERF203",
# https://github.com/astral-sh/ruff/issues/7871
"UP038",
# https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
"W191",
"E111",
"E114",
"E117",
"D206",
"D300",
"Q000",
"Q001",
"Q002",
"Q003",
"COM812",
"COM819",
"ISC001",
"ISC002",
]

[tool.pytest.ini_options]
Expand Down

0 comments on commit db6372a

Please sign in to comment.