File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
target-version = " py310"
4
4
5
- select = [
5
+ lint. select = [
6
6
" B007" , # Loop control variable {name} not used within loop body
7
7
" B014" , # Exception handler with duplicate exception
8
8
" C" , # complexity
@@ -26,7 +26,7 @@ select = [
26
26
" W" , # pycodestyle
27
27
]
28
28
29
- ignore = [
29
+ lint. ignore = [
30
30
" D202" , # No blank lines allowed after function docstring
31
31
" D203" , # 1 blank line required before class docstring
32
32
" D213" , # Multi-line docstring summary should start at the second line
@@ -39,8 +39,8 @@ ignore = [
39
39
" E731" , # do not assign a lambda expression, use a def
40
40
]
41
41
42
- [flake8-pytest-style ]
42
+ [lint . flake8-pytest-style ]
43
43
fixture-parentheses = false
44
44
45
- [mccabe ]
45
+ [lint . mccabe ]
46
46
max-complexity = 40
You can’t perform that action at this time.
0 commit comments