File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -43,14 +43,14 @@ ignore = [
43
43
" D203" , # 1 blank line required before class docstring
44
44
" D212" , # Multi-line docstring summary should start at the first line
45
45
" D100" , # Missing docstring in public module
46
- " PLR0913" , # Too many arguments to function call,
47
- " I001" ,
48
- " TC002" ,
49
- " ARG002" ,
50
- " TD002" ,
51
- " TD003" ,
52
- " FIX002" ,
53
- " COM812"
46
+ " PLR0913" , # Too many arguments to function call
47
+ " I001" , # Unsorted imports
48
+ " TC002" , # Move third-party imports to a separate group
49
+ " ARG002" , # Unused method argument
50
+ " TD002" , # Missing author in TODO
51
+ " TD003" , # Missing issue link in TODO
52
+ " FIX002" , # Line contains TODO, consider resolving the issue
53
+ " COM812" # Missing trailing comma in Python 3.6+
54
54
]
55
55
56
56
# Allow unused variables when underscore-prefixed
You can’t perform that action at this time.
0 commit comments