Skip to content

Commit

Permalink
chore: Break out complexity preferences
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed May 29, 2024
1 parent 59468f4 commit d2a3a59
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 @@ -13,15 +13,14 @@ ignore = [
# https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
"W191", "E501", "D206", "Q000", "Q001", "Q002", "Q003", "ISC001",
"D", # pydocstyle
"C901", "PLR0912", # complexity preferences
"ARG001", # https://github.com/astral-sh/ruff/issues/8094
"B018", # useless expression (e.g. variable to render)
"C901", # is too complex
"E402", # import not at top
"F401", # imported but unused
"F841", # https://github.com/astral-sh/ruff/issues/8094
"F821", # undefined name (e.g. %sql magic assignment)
"ERA001", # commented-out code
"PLR0912", # too many branches
"PLR0915", # too many statements
]

Expand Down

0 comments on commit d2a3a59

Please sign in to comment.