Skip to content

Commit

Permalink
update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ilius committed Mar 16, 2024
1 parent cb815b1 commit 81f560f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ lint.select = [
"INT", # flake8-gettext
"ARG", # flake8-unused-arguments
# "PTH", # flake8-use-pathlib
# "ERA", # eradicate
"PD", # pandas-vet
"PGH", # pygrep-hooks
"PL", # Pylint
Expand Down Expand Up @@ -113,7 +112,6 @@ lint.ignore = [
"SIM110", # Use any(...)
"SIM115", # Use context handler for opening files
# "SIM111", # Use all(...): warning: `SIM111` has been remapped to `SIM110`.
# ERA, PD,
"TCH003", # Move standard library import `...` into a type-checking block
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed in ...
]
Expand Down Expand Up @@ -185,7 +183,6 @@ lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
"PLR0904", # Too many public methods
]
"slob.py" = [
"PERF203", # `try`-`except` within a loop incurs performance overhead, FIXME
]
"html_dir.py" = [
"C901", # `...` is too complex
Expand Down Expand Up @@ -235,7 +232,7 @@ lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
"test.py" = ["ANN", "T201"]
"scripts/*.py" = ["ANN", "T201", "INP001"]
"scripts/*/*.py" = ["ANN", "T201", "INP001"]
"doc/lib-examples/*.py" = ["ANN", "ERA", "INP"]
"doc/lib-examples/*.py" = ["ANN", "INP"]

[tool.ruff.format]
quote-style = "double"
Expand Down

0 comments on commit 81f560f

Please sign in to comment.