mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-08-21 14:55:27 -04:00
20 lines
741 B
YAML
20 lines
741 B
YAML
# Local hooks run on commit: clang-format for staged C/C++ in soh/ (using a
|
|
# pinned 14.x downloaded by pre-commit), and the JSON asset lint. Scopes match
|
|
# run-clang-format.sh / scripts/lint-json.py and CI.
|
|
# pre-commit install --install-hooks # enable (downloads clang-format up front)
|
|
repos:
|
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
rev: v14.0.6
|
|
hooks:
|
|
- id: clang-format
|
|
files: '^soh/.*\.(c|cpp|h|hpp)$'
|
|
exclude: '^soh/assets/|^soh/(src|include)/.*\.(h|hpp)$'
|
|
- repo: local
|
|
hooks:
|
|
- id: lint-json
|
|
name: lint JSON assets
|
|
entry: scripts/lint-json.sh --fix
|
|
language: system
|
|
files: '^soh/assets/custom/.*\.json$'
|
|
pass_filenames: false
|