Update .pre-commit-config.yaml
Some checks failed
Lint / pre-commit Linting (push) Failing after 2m6s

This commit is contained in:
2025-12-28 23:42:29 +01:00
parent cec79e619a
commit 3119d75031

View File

@@ -2,10 +2,6 @@ repos:
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0 rev: v6.0.0
hooks: hooks:
- id: end-of-file-fixer
exclude: (.txt$|.ipynb$|README.md$|readme.mde$)
- id: trailing-whitespace
exclude: (.txt$|README.md$)
# - id: check-yaml # - id: check-yaml
- id: check-json - id: check-json
- id: check-toml - id: check-toml
@@ -74,6 +70,14 @@ repos:
- id: prettier - id: prettier
types_or: [css, javascript] types_or: [css, javascript]
- repo: https://github.com/executablebooks/mdformat
rev: 1.0.0 # Check for the latest version
hooks:
- id: mdformat
# Important: The GFM plugin is required for table support
additional_dependencies:
- mdformat-gfm
- repo: https://github.com/python-jsonschema/check-jsonschema - repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.36.0 rev: 0.36.0
hooks: hooks:
@@ -86,10 +90,13 @@ repos:
- id: check-compose-spec - id: check-compose-spec
- id: check-dependabot - id: check-dependabot
- repo: https://github.com/pre-commit/pre-commit-hooks # the following hooks should always be at the end fo the file since they may add to what other hooks do
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0 rev: v6.0.0
hooks: hooks:
- id: end-of-file-fixer - id: end-of-file-fixer
exclude: (.txt$|.ipynb$|README.md$|readme.mde$) exclude: (.txt$|.ipynb$|README.md$|readme.mde$)
- id: trailing-whitespace - id: trailing-whitespace
exclude: (.txt$|README.md$) exclude: (.txt$|README.md$)
- id: mixed-line-ending
args: [--fix=lf]