From 875dd1055e375d65dee1d22b9e8cd90ce677f3d9 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Wed, 18 Dec 2024 13:31:19 +0100 Subject: [PATCH] chore: Update ruff lint options in pyproject file Update ruff lint options in pyproject file Chore --- .pre-commit-config.yaml | 2 +- pyproject.toml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) 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" - -