diff --git a/pyproject.toml b/pyproject.toml index 72019ed4..3faf8cb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,16 +82,17 @@ extend-select = [ "NPY", # numpy "Q", # flake8-quotes "RUF", # ruff + "SIM", # flake8-simplify + "TC", # flake8-type-checking "UP", # pyupgrade "W", # pycodestyle - "SIM", - "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 + "C90", # McCabe complexity + "E221", # multiple spaces before operator + "E226", # missing whitespace around arithmetic operator + "E402", # module-level import not at top of file + "RUF067", # non-empty-init-module ] [tool.ruff.lint.flake8-quotes]