-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pre-commit-config.yaml
37 lines (37 loc) · 1.17 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
exclude: '^$'
fail_fast: true
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: end-of-file-fixer
- id: check-merge-conflict
- id: check-symlinks
types: ["symlink"]
types_or: ["symlink"]
stages: [manual]
- id: check-executables-have-shebangs
name: "Executable text files have shebangs"
- id: trailing-whitespace
- id: check-xml
- id: check-yaml
args:
- "-m"
# - repo: https://github.com/adrienverge/yamllint.git
# rev: v1.26.3
# hooks:
# - id: yamllint
# exclude: >
# (?x)^(
# examples/playbooks/templates/.*|
# examples/other/some.j2.yaml
# )$
# files: \.(yaml|yml)$
# types: [file, yaml]
# entry: yamllint --strict
- repo: https://github.com/ansible-community/ansible-lint.git
rev: v6.8.6 # put latest release tag from https://github.com/ansible-community/ansible-lint/releases/
hooks:
- id: ansible-lint
files: \.(yaml|yml)$