Skip to content

Commit 8b6db12

Browse files
committed
Add pylint errors to linting rules
1 parent 4266241 commit 8b6db12

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,19 +129,23 @@ extend-select = [
129129
"FA", # Enforce from __future__ import annotations
130130
"I", # Isort rules
131131
"ICN", # Use common import conventions
132+
"PLE", # Pylint Errors
132133
"TID", # Some good import practices
133134
# "A", # flake8-builtins: detect shadowed builtins
134135
# "B", # flake8-bugbear:
135136
# "C4", # flake8-comprehensions: catch incorrect use of comprehensions
136-
# "DOC", # pydoclint
137137
# "D", # pydocstyle
138+
# "DOC", # pydoclint
138139
# "DTZ", # flake8-datetimez: strict timezone manipulation with datetime
139140
# "E", # pycodestyle errors
140141
# "FBT", # flake8-boolean-trap: detect boolean traps
141142
# "ISC", # flake8-implicit-str-concat: good use of string concatenation
142143
# "N", # pep8-naming: enforce naming conventions
143144
# "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
145149
# "PTH", # flake8-use-pathlib: use pathlib instead of os.path
146150
# "RET", # flake8-return: good return practices
147151
# "S", # flake8-bandit: security testing

0 commit comments

Comments
 (0)