File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,7 @@ extend-select = [
261
261
" W" , # pycodestyle warnings
262
262
" PGH" , # pygrep-hooks
263
263
" PLE" , # Pylint Errors
264
+ " PLR" , # Pylint Refactor
264
265
" PLW" , # Pylint Warnings
265
266
" UP" , # pyupgrade
266
267
" FURB" , # refurb
@@ -277,6 +278,8 @@ ignore = [
277
278
" PERF203" , # try-except within a loop incurs performance overhead
278
279
" E402" , # module level import not at top of file
279
280
" E731" , # do not assign a lambda expression, use a def
281
+ " PLR091" , # too many arguments / branches / statements
282
+ " PLR2004" , # magic value used in comparison
280
283
" PLW0603" , # using the global statement to update is discouraged
281
284
" PLW0642" , # reassigned `self` variable in instance method
282
285
" PLW1641" , # object does not implement `__hash__` method
You can’t perform that action at this time.
0 commit comments