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
" UP" , # pyupgrade
265
266
" FURB" , # refurb
266
267
" RUF" ,
@@ -276,6 +277,8 @@ ignore = [
276
277
" PERF203" , # try-except within a loop incurs performance overhead
277
278
" E402" , # module level import not at top of file
278
279
" E731" , # do not assign a lambda expression, use a def
280
+ " PLR091" , # too many arguments / branches / statements
281
+ " PLR2004" , # magic value used in comparison
279
282
" UP007" , # use X | Y for type annotations
280
283
" FURB105" , # unnecessary empty string passed to `print`
281
284
" RUF001" , # string contains ambiguous unicode character
You can’t perform that action at this time.
0 commit comments