@@ -77,14 +77,14 @@ select = [
7777 # "BLE", # flake8-blind-except (checks the except blocks that do not specify exception)
7878 # "FBT", # flake8-boolean-trap (ensure that boolean args can be used with kw only)
7979 # "E", # pycodestyle errors (PEP 8 style guide violations)
80- # "W", # pycodestyle warnings (e.g., extra spaces, indentation issues)
80+ " W" , # pycodestyle warnings (e.g., extra spaces, indentation issues)
8181 # "DOC", # pydoclint issues (e.g., extra or missing return, yield, warnings)
8282 # "A", # flake8-buitins (check variable and function names to not shadow builtins)
8383 # "N", # Naming convention checks (e.g., PEP 8 variable and function names)
84- # "F", # Pyflakes errors (e.g., unused imports, undefined variables)
84+ " F" , # Pyflakes errors (e.g., unused imports, undefined variables)
8585 # "I", # isort (Ensures imports are sorted properly)
8686 # "B", # flake8-bugbear (Detects likely bugs and bad practices)
87- # "TID", # flake8-tidy-imports (Checks for banned or misplaced imports)
87+ " TID" , # flake8-tidy-imports (Checks for banned or misplaced imports)
8888 " UP" , # pyupgrade (Automatically updates old Python syntax)
8989 # "YTT", # flake8-2020 (Detects outdated Python 2/3 compatibility issues)
9090 # "FLY", # flynt (Converts old-style string formatting to f-strings)
0 commit comments