chore: enable pre-commit
This commit is contained in:
parent
2cd107225b
commit
8e7f3d1bb0
2 changed files with 37 additions and 0 deletions
|
@ -17,7 +17,15 @@
|
||||||
cmake
|
cmake
|
||||||
ninja
|
ninja
|
||||||
sccache
|
sccache
|
||||||
|
|
||||||
|
# pre-commit
|
||||||
|
pre-commit
|
||||||
|
commitizen
|
||||||
];
|
];
|
||||||
|
|
||||||
|
shellHook = ''
|
||||||
|
pre-commit install --allow-missing-config --hook-type pre-commit --hook-type commit-msg
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
29
.pre-commit-config.yaml
Normal file
29
.pre-commit-config.yaml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/commitizen-tools/commitizen
|
||||||
|
rev: v3.15.0
|
||||||
|
hooks:
|
||||||
|
- id: commitizen
|
||||||
|
stages: [commit-msg]
|
||||||
|
|
||||||
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||||
|
rev: v4.0.0-alpha.8
|
||||||
|
hooks:
|
||||||
|
- id: prettier
|
||||||
|
name: check markdown/yaml formatting
|
||||||
|
types_or:
|
||||||
|
- markdown
|
||||||
|
- yaml
|
||||||
|
args: [--no-config]
|
||||||
|
exclude: CHANGELOG.md
|
||||||
|
|
||||||
|
- repo: https://github.com/pocc/pre-commit-hooks
|
||||||
|
rev: v1.3.5
|
||||||
|
hooks:
|
||||||
|
- id: clang-format
|
||||||
|
- id: clang-tidy
|
||||||
|
|
||||||
|
- repo: https://github.com/cheshirekow/cmake-format-precommit
|
||||||
|
rev: v0.6.13
|
||||||
|
hooks:
|
||||||
|
- id: cmake-format
|
||||||
|
- id: cmake-lint
|
Loading…
Reference in a new issue