24 lines
525 B
YAML
24 lines
525 B
YAML
|
|
repos:
|
||
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
|
rev: v2.3.0
|
||
|
|
hooks:
|
||
|
|
- id: end-of-file-fixer
|
||
|
|
- id: trailing-whitespace
|
||
|
|
|
||
|
|
- repo: https://github.com/codespell-project/codespell
|
||
|
|
rev: v1.16.0
|
||
|
|
hooks:
|
||
|
|
- id: codespell
|
||
|
|
|
||
|
|
- repo: https://github.com/pocc/pre-commit-hooks
|
||
|
|
rev: v1.1.1
|
||
|
|
hooks:
|
||
|
|
- id: clang-format
|
||
|
|
args: [-i, --style=GNU]
|
||
|
|
# args: [-i, --style=Google]
|
||
|
|
# - id: clang-tidy
|
||
|
|
# args: [-checks=clang-diagnostic-return-type]
|
||
|
|
# - id: uncrustify
|
||
|
|
# - id: cppcheck
|
||
|
|
# args: [--enable=all]
|