@@ -7,11 +7,9 @@ select = [
7
7
" N" , # pep8-naming (N)
8
8
" UP" , # pyupgrade (UP)
9
9
" YTT" , # flake8-2020 (YTT)
10
- # "ANN", # flake8-annotations (ANN)
11
10
" ASYNC" , # flake8-async (ASYNC)
12
11
" S" , # flake8-bandit (S)
13
12
" BLE" , # flake8-blind-except (BLE)
14
- " FBT" , # flake8-boolean-trap (FBT)
15
13
" B" , # flake8-bugbear (B)
16
14
" A" , # flake8-builtins (A)
17
15
" COM" , # flake8-commas (COM)
@@ -39,7 +37,6 @@ select = [
39
37
" TID" , # flake8-tidy-imports (TID)
40
38
" TCH" , # flake8-type-checking (TCH)
41
39
" INT" , # flake8-gettext (INT)
42
- # "ARG", # flake8-unused-arguments (ARG)
43
40
" ERA" , # eradicate (ERA)
44
41
" PD" , # pandas-vet (PD)
45
42
" PGH" , # pygrep-hooks (PGH)
@@ -53,6 +50,8 @@ select = [
53
50
]
54
51
55
52
# Ignored rules
53
+ # "ANN", # flake8-annotations (ANN)
54
+ # "ARG", # flake8-unused-arguments (ARG)
56
55
# "D", # pydocstyle (D)
57
56
# "PTH", # flake8-use-pathlib (PTH)
58
57
# "BLE", # flake8-blind-except (BLE)
@@ -63,5 +62,4 @@ select = [
63
62
64
63
65
64
# Ignore error code
66
- # ANN101 -> Missing type annotation for `self` in method
67
- ignore = [" ANN101" ]
65
+ ignore = []
0 commit comments