Files
homeracker/.pre-commit-config.yaml
2025-04-26 12:31:27 +02:00

26 lines
610 B
YAML

---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-added-large-files
args:
- --maxkb=1000
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 39.227.1
hooks:
- id: renovate-config-validator
args: ["--strict"]
language_version: 20.18.0 # workaround till https://github.com/renovatebot/pre-commit-hooks/issues/2460 is fixed
- repo: https://github.com/PyCQA/pylint
rev: v3.3.6
hooks:
- id: pylint
args:
[
"--rcfile=.lint/pylint/.pylintrc"
]
...