diff options
Diffstat (limited to '.pre-commit-config.yaml')
| -rw-r--r-- | .pre-commit-config.yaml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e9eb853..2b893f4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,7 +7,6 @@ repos: - id: check-added-large-files - id: check-yaml - id: trailing-whitespace - - id: double-quote-string-fixer - id: end-of-file-fixer - repo: https://github.com/ansible-community/ansible-lint.git @@ -20,3 +19,10 @@ repos: rev: v0.43.0 hooks: - id: markdownlint + + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.15.20 + hooks: + - id: ruff-check + args: [--fix] + - id: ruff-format |