Skip to content

Commit

Permalink
also exclude pyupgrade for now
Browse files Browse the repository at this point in the history
  • Loading branch information
keewis committed Nov 24, 2024
1 parent dbb7fdf commit 24bd608
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 24bd608

Please sign in to comment.