diff --git a/pyproject.toml b/pyproject.toml index d0deb42c081fdad5227e0b06059c2fa7f8df5c3c..171b57d63a8dcf9b22507c829d22b0c58f0066d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -124,19 +124,21 @@ select = [ "W", # pycodestyle ] ignore = [ + "E402", # Module level import not at top of file "E501", # Line too long ({width} > {limit} characters) "E701", # Multiple statements on one line (colon) "E731", # Do not assign a lambda expression, use a def - "E402", # Module level import not at top of file + "PLR0904", # too-many-public-methods "PLR0911", # Too many return statements "PLR0912", # Too many branches "PLR0913", # Too many arguments in function definition "PLR0915", # Too many statements + "PLR0917", # too-many-positional-arguments + "PLR1714", # consider-using-in "PLR2004", # Magic value used instead of constant + "PLR5501", # else-if-used "PLW0603", # Using the global statement "PLW2901", # redefined-loop-name - "PLR1714", # consider-using-in - "PLR5501", # else-if-used ] fixable = ["ALL"] isort.split-on-trailing-comma = false