File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ extend-select = [
32
32
" UP" ,
33
33
]
34
34
ignore = [
35
- " F" , # TODO: enable Pyflakes rules
36
35
" C408" , # Unnecessary `dict()` call (rewrite as a literal)
37
36
" PIE790" , # Unnecessary `pass` statement
38
37
" E241" , # Multiple spaces after comma
@@ -44,6 +43,10 @@ ignore = [
44
43
" E721" , # TODO: Use `is` and `is not` for type comparisons, or `isinstance()` for isinstance check
45
44
" E731" , # Do not assign a `lambda` expression, use a `def`
46
45
" E741" , # Ambiguous variable name
46
+ " F403" , # `from ... import *` used; unable to detect undefined names
47
+ " F405" , # may be undefined, or defined from star imports
48
+ " F821" , # Undefined name
49
+ " F841" , # Local variable is assigned to but never used
47
50
" UP015" , # Unnecessary mode argument
48
51
" UP031" , # TODO: Use format specifiers instead of percent format
49
52
]
You can’t perform that action at this time.
0 commit comments