diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c862cb36f..42f12ea51 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,4 +17,4 @@ repos: types_or: [ python, pyi ] # Run the formatter. - id: ruff-format - types_or: [ python, pyi ] \ No newline at end of file + types_or: [ python, pyi ] diff --git a/pyproject.toml b/pyproject.toml index cbee3e056..0d5845d78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -115,11 +115,10 @@ mkdocstrings = {extras = ["python"], version = "^0.26.2"} [tool.ruff] # https://beta.ruff.rs/docs/ line-length = 100 + +[tool.ruff.lint] ignore = ["F401"] -ignore-init-module-imports = true [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" - -