Merge pull request #9 from flucto-gmbh/BUG/pre-commit

pre-commit ruff was conflicting with local ruff. fixed.
This commit is contained in:
Felix Weiler
2023-11-10 13:58:34 +01:00
committed by GitHub

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"