diff --git a/pyproject.toml b/pyproject.toml index f1371e64..451c7b62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,16 +75,17 @@ extend-select = [ "Q", # flake8-quotes "RUF", # ruff "SIM", # flake8-simplify + "TC", # flake8-type-checking "UP", # pyupgrade "W", # pycodestyle - "TC", ] extend-ignore = [ - "C90", # McCabe complexity - "E221", # multiple spaces before operator - "E226", # missing whitespace around arithmetic operator - "E402", # module-level import not at top of file - "SIM223", # simplify `False and ...` conditional + "C90", # McCabe complexity + "E221", # multiple spaces before operator + "E226", # missing whitespace around arithmetic operator + "E402", # module-level import not at top of file + "SIM223", # simplify `False and ...` conditional + "RUF067", # non-empty-init-module ] [tool.ruff.lint.flake8-quotes]