@@ -129,19 +129,23 @@ extend-select = [
129
129
" FA" , # Enforce from __future__ import annotations
130
130
" I" , # Isort rules
131
131
" ICN" , # Use common import conventions
132
+ " PLE" , # Pylint Errors
132
133
" TID" , # Some good import practices
133
134
# "A", # flake8-builtins: detect shadowed builtins
134
135
# "B", # flake8-bugbear:
135
136
# "C4", # flake8-comprehensions: catch incorrect use of comprehensions
136
- # "DOC", # pydoclint
137
137
# "D", # pydocstyle
138
+ # "DOC", # pydoclint
138
139
# "DTZ", # flake8-datetimez: strict timezone manipulation with datetime
139
140
# "E", # pycodestyle errors
140
141
# "FBT", # flake8-boolean-trap: detect boolean traps
141
142
# "ISC", # flake8-implicit-str-concat: good use of string concatenation
142
143
# "N", # pep8-naming: enforce naming conventions
143
144
# "NPY", # Some numpy-specific things
144
- # "PL", # Pylint rules
145
+ # "PL", # All Pylint rules
146
+ # "PLC", # Pylint Convention
147
+ # "PLR", # Pylint Refactor
148
+ # "PLW", # Pylint Warnings
145
149
# "PTH", # flake8-use-pathlib: use pathlib instead of os.path
146
150
# "RET", # flake8-return: good return practices
147
151
# "S", # flake8-bandit: security testing
0 commit comments