-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
133 lines (131 loc) · 3.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
ci:
# NOTE(rkm 2023-11-21) ansible-lint exceeds pre-commit.ci free tier size, so we run it via GitHub Actions
skip: [ansible-lint]
default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v5.0.0"
hooks:
# General
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: check-yaml
- id: detect-private-key
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
# Python
- id: check-builtin-literals
- id: check-docstring-first
- id: debug-statements
# General
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
- repo: https://github.com/rkm/pre-commit-nocommit
rev: "v1.0.0"
hooks:
- id: nocommit
exclude: .pre-commit-config.yaml
- repo: https://github.com/codespell-project/codespell
rev: "v2.3.0"
hooks:
- id: codespell
args:
[
--ignore-words,
.meta/codespell-ignores,
--exclude-file,
.meta/codespell-excludes,
--ignore-regex,
'\Whttps?://\S*',
]
# Markdown
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.21
hooks:
- id: mdformat
additional_dependencies:
- mdformat-gfm==0.3.6
# Python
- repo: https://github.com/pre-commit/pygrep-hooks
rev: "v1.10.0"
hooks:
- id: python-check-blanket-noqa
- id: python-check-mock-methods
- id: python-use-type-annotations
- id: python-no-log-warn
- repo: https://github.com/asottile/reorder-python-imports
rev: "v3.14.0"
hooks:
- id: reorder-python-imports
args: [--py310-plus]
- repo: https://github.com/asottile/add-trailing-comma
rev: "v3.1.0"
hooks:
- id: add-trailing-comma
- repo: https://github.com/asottile/pyupgrade
rev: "v3.19.1"
hooks:
- id: pyupgrade
args: [--py310-plus]
- repo: https://github.com/asottile/yesqa
rev: "v1.5.0"
hooks:
- id: yesqa
additional_dependencies: [pep8-naming==0.14.1]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.14.1"
hooks:
- id: mypy
args: [--config-file, .meta/mypy.ini, --scripts-are-modules]
- repo: https://github.com/psf/black-pre-commit-mirror
rev: "24.10.0"
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: "7.1.1"
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear==24.4.26
- flake8-assert-msg==1.1.1
- pep8-naming==0.14.1
args: [--config, .meta/flake8.conf]
# Yaml
- repo: https://github.com/adrienverge/yamllint
rev: "v1.35.1"
hooks:
- id: yamllint
args: [-c, .meta/yamllint.yaml]
# Ansible
- repo: https://github.com/ansible/ansible-lint.git
rev: "v25.1.0"
hooks:
- id: ansible-lint
args:
[--config, .meta/ansible-lint.yml]
additional_dependencies:
- ansible==10.1.0
- jmespath==1.0.1
# Shell
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: "v0.10.0.1"
hooks:
- id: shellcheck
args: [--enable=all]
# Local
- repo: local
hooks:
- id: ansible-managed-in-templates
name: ansible-managed-in-templates
entry: .meta/ansible-managed-in-templates
language: system
files: "^roles/.*/templates/.*$"
types: [text]