From 24bd6089a6763d4295510942759341fb38894e9d Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Sun, 24 Nov 2024 11:32:54 +0100 Subject: [PATCH] also exclude `pyupgrade` for now --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 38714890..b6536077 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,17 +90,17 @@ ignore = [ ] per-file-ignores = { "examples/runner-config/local.py" = ["F821"] } select = [ - "F", # Pyflakes - "E", # Pycodestyle - "I", # isort - "UP", # Pyupgrade - "TID", # flake8-tidy-imports + "F", # Pyflakes + "E", # Pycodestyle + "I", # isort + # "UP", # Pyupgrade + # "TID", # flake8-tidy-imports "W", ] # extend-safe-fixes = [ # "TID252", # absolute imports # ] -fixable = ["I", "UP"] +fixable = ["I"] [tool.ruff.lint.isort] known-first-party = ["pangeo_forge_recipes"]