From 2d6526ea29eb9319f980577bf3964f91d519039f Mon Sep 17 00:00:00 2001 From: Ruslan Baikulov Date: Sun, 7 Apr 2024 23:01:55 +0300 Subject: [PATCH] chore: Move ruff linter options to the 'lint' section --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7899d3b..1c11e4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,13 +60,15 @@ include = ["argus"] [tool.ruff] line-length = 89 + +[tool.ruff.lint] select = [ "E", # pycodestyle errors "W", # pycodestyle warnings "F", # pyflakes ] -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] "__init__.py" = ["F401"] [tool.pytest.ini_options]