From 100f6324632d48b4d9089564079d1164a2a3ed08 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Tue, 2 Apr 2024 15:56:56 +0200 Subject: [PATCH] fix warnings --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index af8b5817..f8be8eda 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = [ ] [tool.ruff] -select = [ +lint.select = [ "A", # flake8-builtins "B", # flake8-bugbear "C4", # flake8-comprehensions @@ -24,11 +24,11 @@ exclude = [ "compliance_checker/cf/cf.py", ] -ignore = [ +lint.ignore = [ "E501", ] -[tool.ruff.per-file-ignores] +[lint.per-file-ignores] "docs/source/conf.py" = [ "E402", "A001",