2019-08-20 19:45:52 +06:00
|
|
|
pre-commit:
|
|
|
|
scripts:
|
|
|
|
lint:
|
|
|
|
tags: lint
|
2024-07-11 18:07:52 +03:00
|
|
|
commands:
|
|
|
|
lint-clang:
|
|
|
|
tags: lint
|
|
|
|
run: command -v clang-format && find . -not -path "./.tmp/*" -not -path "./.git/*" \( -iname "*.h" -o -iname "*.c" -o -iname "*.cpp" \) | xargs clang-format --dry-run --Werror
|
2019-08-20 19:45:52 +06:00
|
|
|
|
|
|
|
pre-push:
|
|
|
|
scripts:
|
|
|
|
test:
|
|
|
|
tags: test
|
2023-02-24 12:23:21 -05:00
|
|
|
commands:
|
|
|
|
check-links:
|
|
|
|
tags: docs
|
2023-07-02 23:01:44 +03:00
|
|
|
run: command -v lychee && lychee docs README.md CHANGELOG.md --exclude localhost --exclude twitter.com --exclude-path docs/index.html
|