Skip to content

Commit f51c185

Browse files
alexfiklinducer
authored andcommitted
fix: ignore new RUF067 error
1 parent 0ea2f2f commit f51c185

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

pyproject.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,17 @@ extend-select = [
8282
"NPY", # numpy
8383
"Q", # flake8-quotes
8484
"RUF", # ruff
85+
"SIM", # flake8-simplify
86+
"TC", # flake8-type-checking
8587
"UP", # pyupgrade
8688
"W", # pycodestyle
87-
"SIM",
88-
"TC",
8989
]
9090
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
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
95+
"RUF067", # non-empty-init-module
9596
]
9697

9798
[tool.ruff.lint.flake8-quotes]

0 commit comments

Comments
 (0)