@@ -200,7 +200,7 @@ select = [
200
200
# "PLR", # Pylint Refactoring suggestions
201
201
" PLW" , # Pylint Warnings
202
202
" PT" , # flake8-pytest-style (warnings about unit test best practices)
203
- # "PTH", # flake8-use-pathlib (force use of pathlib instead of os.path)
203
+ # "PTH", # flake8-use-pathlib (force use of pathlib instead of os.path)
204
204
" PYI" , # flake8-pyi (warnings related to type hint best practices)
205
205
" Q" , # flake8-quotes (force double quotes)
206
206
# "RET", # flake8-return (various warnings related to implicit vs explicit return statements)
@@ -209,8 +209,8 @@ select = [
209
209
# "S", # flake8-bandit (security oriented checks, but extremely pedantic - do not attempt to apply to unit test files)
210
210
# "SIM", # flake8-simplify (rules to attempt to simplify code)
211
211
# "SLF", # flake8-self (warn when protected members are accessed outside of a class or file)
212
- # "SLOT", # flake8-slots (warn about subclasses that should define __slots__)
213
- " T10" , # flake8-debugger (check for pdb traces left in Python code)
212
+ " SLOT" , # flake8-slots (warn about subclasses that should define __slots__)
213
+ " T10" , # flake8-debugger (check for pdb traces left in Python code)
214
214
# "T20", # flake8-print (warn about use of `print` or `pprint` - force use of loggers)
215
215
" TC" , # flake8-type-checking (type checking warnings)
216
216
" TD" , # flake8-todos (force all TODOs to include an author and issue link)
0 commit comments