@@ -127,6 +127,7 @@ lint.select = [
127
127
" N" , # pep8-naming
128
128
" D" , # pydocstyle
129
129
" UP" , # pyupgrade
130
+ # "ERA", # eradicate
130
131
" YTT" , # flake8-2020
131
132
" ANN" , # flake8-annotations
132
133
" ASYNC" ,# flake8-async
@@ -141,6 +142,7 @@ lint.select = [
141
142
" T10" , # flake8-debugger
142
143
" EM" , # flake8-errmsg
143
144
" EXE" , # flake8-executable
145
+ # "FIX", # flake8-fixme
144
146
" ISC" , # flake8-implicit-str-concat
145
147
" ICN" , # flake8-import-conventions
146
148
" LOG" , # flake8-logging
@@ -154,20 +156,18 @@ lint.select = [
154
156
" RSE" , # flake8-raise (RSE)
155
157
" RET" , # flake8-return (RET)
156
158
" SLF" , # flake8-self (SLF)
157
- " SLOT" , # flake8-slots (SLOT)
158
159
" SIM" , # flake8-simplify
160
+ " SLOT" , # flake8-slots (SLOT)
159
161
" TID" , # flake8-tidy-imports
162
+ # "TD", # flake8-todos
160
163
" TC" , # flake8-type-checking
161
- " INT" , # flake8-gettext
162
164
" ARG" , # flake8-unused-arguments
163
165
# "PTH", # flake8-use-pathlib
164
- # "TD", # flake8-todos
165
- # "FIX", # flake8-fixme
166
- # "ERA", # eradicate
166
+ " INT" , # flake8-gettext
167
167
" PD" , # pandas-vet
168
168
" PGH" , # pygrep-hooks
169
169
" PL" , # Pylint
170
- " FLY002 " , # flynt
170
+ " FLY " , # flynt
171
171
" PERF" , # Performance-related issues
172
172
" FURB" , # refurb
173
173
" DOC" , # pydoclint
@@ -185,9 +185,7 @@ lint.ignore = [
185
185
" D103" , # Missing docstring in public function
186
186
" D107" , # Missing docstring in `__init__`
187
187
" D203" , #
188
- " D205" , # 1 blank line required between summary line and description
189
188
" D212" , # Multi-line docstring summary should start at the first line
190
- " D404" , # First word of the docstring should not be "This"
191
189
" D401" , # First line of docstring should be in imperative mood
192
190
" COM812" ,
193
191
" DTZ005" , # `tz=None` passed to `datetime.datetime.now()`
0 commit comments