File tree Expand file tree Collapse file tree 2 files changed +45
-0
lines changed
Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ minimum_pre_commit_version : 3.5.0
3+
4+ repos :
5+
6+ # commit-msg hooks
7+ # ----------
8+
9+ # Conventional Commit message checker (commitizen)
10+ - repo : https://github.com/commitizen-tools/commitizen
11+ rev : v4.9.1
12+ hooks :
13+ - id : commitizen
14+ stages :
15+ - commit-msg
16+
17+ # pre-commit hooks
18+ # ----------
19+
20+ # Hooks that actively "change" files (formatters etc.)
21+ # ----------------------------------
22+
23+ # Standard pre-commit rules
24+ - repo : https://github.com/pre-commit/pre-commit-hooks
25+ rev : v6.0.0
26+ hooks :
27+ - id : check-case-conflict
28+ - id : check-docstring-first
29+ - id : check-executables-have-shebangs
30+ - id : check-shebang-scripts-are-executable
31+ - id : detect-private-key
32+ - id : end-of-file-fixer
33+ - id : trailing-whitespace
34+ args :
35+ - --markdown-linebreak-ext=md
36+
37+ # YAML Lint
38+ - repo : https://github.com/adrienverge/yamllint
39+ rev : v1.37.1
40+ hooks :
41+ - id : yamllint
42+ types :
43+ - file
44+ files : (\.yaml|\.yaml.j2)$
Original file line number Diff line number Diff line change 22all :
33 vars :
44 ansible_connection : local
5+ ansible_python_interpreter : python
56 children :
67 server :
78 hosts :
You can’t perform that action at this time.
0 commit comments