pre-commit ruff was conflicting with local ruff. fixed.

This commit is contained in:
Felix Weiler
2023-11-09 12:58:50 +01:00
parent 202ec78498
commit b13a91f46d

View File

@@ -9,10 +9,16 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.0.230"
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.1.5
hooks:
# Run the linter.
- id: ruff
args: [ --fix ]
# Run the formatter.
# Disabled for now, we use black
# - id: ruff-format
- repo: https://github.com/psf/black
rev: "22.8.0"