Skip to content

Commit 3a0ad4f

Browse files
alexfiklinducer
authored andcommitted
fix: add ignore for RUF067
1 parent 9b3a28d commit 3a0ad4f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,16 @@ extend-select = [
9292
"Q", # flake8-quotes
9393
"RUF", # ruff
9494
"SIM", # flake8-simplify
95+
"TC", # flake8-type-checking
9596
"UP", # pyupgrade
9697
"W", # pycodestyle
97-
"TC",
9898
]
9999
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
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
104+
"RUF067", # non-empty-init-module
104105
]
105106

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

0 commit comments

Comments
 (0)