Skip to content

Commit d42f4db

Browse files
committed
🔧 enable additional flake8 checks in pyproject.toml
1 parent a41107f commit d42f4db

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,16 @@ select = [
8686
"UP", # pyupgrade
8787
"YTT", # flake8-2020
8888
"ASYNC", # flake8-async
89-
# "S", # flake8-bandit
89+
"S", # flake8-bandit
9090
"BLE", # flake8-blind-except
91-
# "FBT", # flake8-boolean-trap
91+
"FBT", # flake8-boolean-trap
9292
"B", # flake8-bugbear
9393
"A", # flake8-builtins
9494
"COM", # flake8-commas
9595
"C4", # flake8-comprehensions
9696
"DTZ", # flake8-datetimez
9797
"T10", # flake8-debugger
98-
# "FA", # flake8-future-annotations
98+
"FA", # flake8-future-annotations
9999
"ISC", # flake8-implicit-str-concat
100100
"ICN", # flake8-import-conventions
101101
"PIE", # flake8-pie
@@ -107,10 +107,10 @@ select = [
107107
"SLOT", # flake8-slots
108108
"SIM", # flake8-simplify
109109
"TID", # flake8-tidy-imports
110-
# "TC", # flake8-type-checking
111-
# "ARG", # flake8-unused-arguments
110+
"TC", # flake8-type-checking
111+
"ARG", # flake8-unused-arguments
112112
"PTH", # flake8-use-pathlib
113-
# "ERA", # eradicate
113+
"ERA", # eradicate
114114
"PD", # pandas-vet
115115
"PGH", # pygrep-hooks
116116
"PL", # pylint

0 commit comments

Comments
 (0)