We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dce276f commit dbf59baCopy full SHA for dbf59ba
pyproject.toml
@@ -57,12 +57,32 @@ select = [
57
"W",
58
# Isort
59
"I",
60
+ # Comprehensions
61
+ "C4",
62
+ # Debugger
63
+ "T100",
64
# Pyupgrade
65
"UP",
66
# Flake8-pyi
67
"PYI",
68
+ # Bugbear
69
+ "B",
70
+ # Pylint
71
+ "PLE",
72
+ # Flake8-simplify
73
+ "SIM101",
74
# Flake8-use-pathlib
75
"PTH",
76
+ # Pygrep-hooks
77
+ "PGH004",
78
+ # Flake8-type-checking
79
+ "TCH",
80
+ # Flake8-raise
81
+ "RSE",
82
+ # Refurb
83
+ "FURB",
84
+ # Flake8-future-annotations
85
+ "FA",
86
# Yesqa
87
"RUF100",
88
]
0 commit comments