-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
45 lines (40 loc) · 1.15 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
38
39
40
41
42
43
44
45
---
# .pre-commit-config.yaml
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.26.3
hooks:
- id: yamllint
args: [--config-file=.yamllint.yml]
- repo: https://github.com/ansible-community/ansible-lint
rev: v6.13.0
hooks:
- id: ansible-lint
additional_dependencies: [ansible-lint==6.13.0]
- repo: https://github.com/willthames/ansible-role-lint
rev: v4.1.0
hooks:
- id: ansible-role-lint
name: Ansible Role Lint
entry: ansible-role-lint
language: system
types: [yaml]
- repo: https://github.com/citation-file-format/check-citation-file.git
rev: v1.0.0
hooks:
- id: check-citation-file
- repo: https://github.com/terrencepreilly/ansible-jinja2
rev: v0.1.0
hooks:
- id: ansible-jinja2-syntax
name: Ansible Jinja2 Syntax Check
entry: ansible-jinja2-syntax
language: system
types: [yaml, jinja]