Files
esp-matter/.pre-commit-config.yaml
Shubham Patil c697c6dedc git-hook: added keep-sorted and codespell pre-commit hooks
- keep-sorted: for sorting the lists between start/stop marker
- codespell: to fix the spelling mistakes
2026-02-20 14:10:31 +05:30

18 lines
415 B
YAML

repos:
- repo: https://github.com/espressif/astyle_py.git
rev: v1.0.5
hooks:
- id: astyle_py
args: ['--astyle-version=3.4.7', '--rules=tools/ci/astyle-rules.yml']
- repo: https://github.com/google/keep-sorted
rev: v0.7.1
hooks:
- id: keep-sorted
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
args: ['--config=.codespellrc', '--write-changes']