Files
knightcrawler/.pre-commit-config.yaml
iPromKnight c8a1ebd8ae Bump large file to 2500kb because of Jav list.
Doesn't make sense to enable lfs for this file.
2024-03-10 13:48:14 +00:00

22 lines
594 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-added-large-files
args: ['--maxkb=2500']
- id: check-json
- id: check-toml
- id: check-xml
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending
args: [--fix=lf]
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
hooks:
- id: codespell
exclude: |
(?x)^(src/node/consumer/test/.*|src/producer/Data/.*)$
args: ["-L", "strem,chage"]