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 9b3a28d commit 3a0ad4fCopy full SHA for 3a0ad4f
pyproject.toml
@@ -92,15 +92,16 @@ extend-select = [
92
"Q", # flake8-quotes
93
"RUF", # ruff
94
"SIM", # flake8-simplify
95
+ "TC", # flake8-type-checking
96
"UP", # pyupgrade
97
"W", # pycodestyle
- "TC",
98
]
99
extend-ignore = [
100
- "C90", # McCabe complexity
101
- "E221", # multiple spaces before operator
102
- "E226", # missing whitespace around arithmetic operator
103
- "E402", # module-level import not at top of file
+ "C90", # McCabe complexity
+ "E221", # multiple spaces before operator
+ "E226", # missing whitespace around arithmetic operator
+ "E402", # module-level import not at top of file
104
+ "RUF067", # non-empty-init-module
105
106
107
[tool.ruff.lint.flake8-quotes]
0 commit comments