diff --git a/pyproject.toml b/pyproject.toml index 042d13ea7956a..6eef8e4fa9b7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -208,8 +208,12 @@ select = [ "B", # flake8-quotes "Q", + # flake8-debugger + "T10", + # flake8-gettext + "INT", # pylint - "PLE", "PLR", "PLW", + "PLC", "PLE", "PLR", "PLW", # misc lints "PIE", # flake8-pyi @@ -273,6 +277,8 @@ ignore = [ "PLW0603", # Docstrings should not be included in stubs "PYI021", + # compare-to-empty-string + "PLC1901", # Use typing_extensions.TypeAlias for type aliases # "PYI026", # not yet implemented # Use "collections.abc.*" instead of "typing.*" (PEP 585 syntax)