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 0ea2f2f commit f51c185Copy full SHA for f51c185
pyproject.toml
@@ -82,16 +82,17 @@ extend-select = [
82
"NPY", # numpy
83
"Q", # flake8-quotes
84
"RUF", # ruff
85
+ "SIM", # flake8-simplify
86
+ "TC", # flake8-type-checking
87
"UP", # pyupgrade
88
"W", # pycodestyle
- "SIM",
- "TC",
89
]
90
extend-ignore = [
91
- "C90", # McCabe complexity
92
- "E221", # multiple spaces before operator
93
- "E226", # missing whitespace around arithmetic operator
94
- "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
95
+ "RUF067", # non-empty-init-module
96
97
98
[tool.ruff.lint.flake8-quotes]
0 commit comments