@@ -10,13 +10,13 @@ exclude = [
10
10
[lint ]
11
11
extend-select = [
12
12
# upstream
13
-
13
+
14
14
" C901" , # complex-structure
15
15
" I" , # isort
16
16
" PERF401" , # manual-list-comprehension
17
17
" W" , # pycodestyle Warning
18
-
19
- # Ensure modern type annotation syntax and best practices
18
+
19
+ # Ensure modern type annotation syntax and best practices
20
20
# Not including those covered by type-checkers or exclusive to Python 3.11+
21
21
" FA" , # flake8-future-annotations
22
22
" F404" , # late-future-import
@@ -30,21 +30,17 @@ extend-select = [
30
30
31
31
# local
32
32
" ANN2" , # missing-return-type-*
33
- " F" , # Pyflakes
34
- " F404" , # late-future-import
35
- " FA" , # flake8-future-annotations
36
33
" PERF" , # Perflint
37
34
" PGH" , # pygrep-hooks (blanket-* rules)
38
35
" PT" , # flake8-pytest-style
39
- " PYI" , # flake8-pyi
40
36
" RUF10" , # unused-noqa & redirected-noqa
41
37
" TRY" , # tryceratops
42
38
" UP" , # pyupgrade
43
39
" YTT" , # flake8-2020
44
40
]
45
41
ignore = [
46
42
# upstream
47
-
43
+
48
44
# Typeshed rejects complex or non-literal defaults for maintenance and testing reasons,
49
45
# irrelevant to this project.
50
46
" PYI011" , # typed-argument-default-in-stub
@@ -64,8 +60,8 @@ ignore = [
64
60
" ISC001" ,
65
61
" ISC002" ,
66
62
67
- # local
68
- " PERF203" , # try-except-in-loop, micro-optimisation with many false-positive. Worth checking but don't block CI
63
+ # local
64
+ " PERF203" , # try-except-in-loop, micro-optimisation with many false-positive. Worth checking but don't block CI
69
65
" PT007" , # temporarily disabled, TODO: configure and standardize to preference
70
66
" PT011" , # temporarily disabled, TODO: tighten expected error
71
67
" PT012" , # pytest-raises-with-multiple-statements, avoid extra dummy methods for a few lines, sometimes we explicitly assert in case of no error
0 commit comments