-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
160 lines (157 loc) · 4.97 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
exclude: 'provision/ansible/prod/roles/contrib|provision/ansible/dev/roles/contrib|vendor|docs|.serverless|.serveless_nextjs|node_modules|migrations|.git|.tox|.gen'
default_language_version:
# force all unspecified python hooks to run python3
python: python3.8.0
repos:
- repo: https://github.com/pre-commit/pre-commit
rev: v2.15.0
hooks:
- id: validate_manifest
- repo: https://github.com/codespell-project/codespell
rev: v2.1.0
hooks:
- id: codespell
args: [--ignore-words=.codespell-ignores]
exclude: >
(?x)^(
.+\.vendor\/.*$|
.+\.node_modules\/.*$|
.+\.lock$|
)$
- repo: https://github.com/Lucas-C/pre-commit-hooks-safety
rev: v1.2.1
hooks:
- id: python-safety-dependencies-check
- repo: https://github.com/Lucas-C/pre-commit-hooks-bandit
rev: v1.0.5
hooks:
- id: python-bandit-vulnerability-check
args: []
files: .py$
- repo: https://github.com/pre-commit/mirrors-pylint
rev: v3.0.0a1
hooks:
- id: pylint
exclude: __pycache__|migrations|conf.py|_build|.tox|pootle/static|pootle/translations|pootle/locale|pootle/assets|templates
args:
- --rcfile=.github/linters/.pylintrc
- --disable=no-name-in-module,import-error,ungrouped-imports
- --ignore=settings_test, migrations
- repo: https://github.com/ambv/black
rev: 20.8b1
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.812
hooks:
- id: mypy
args:
- --ignore-missing-imports
exclude: migrations|conf.py|_build|.tox|pootle/static|pootle/translations|pootle/locale|pootle/assets|templates
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: detect-private-key
files: ^(?!\.?git-crypt)
- id: check-merge-conflict
- id: trailing-whitespace
files: ^tf|-|\.(py|tfvars|tf|tfenv|env|yml|yaml|pem|key|mock)$
- id: end-of-file-fixer
files: ^tf|-|\.(py|env|yml|yaml|pem|key|mock)$
- id: check-added-large-files
files: ^tf|-|\.(py|env|yml|yaml)$
- id: check-case-conflict
- id: check-json
- id: check-xml
- id: check-yaml
- id: check-byte-order-marker
- id: check-ast
- id: debug-statements
- id: check-docstring-first
- id: requirements-txt-fixer
- id: check-symlinks
- id: name-tests-test
args:
- --django
- id: file-contents-sorter
- id: fix-encoding-pragma
- id: sort-simple-yaml
- id: check-executables-have-shebangs
- repo: https://github.com/asottile/blacken-docs
rev: v1.11.0
hooks:
- id: blacken-docs
additional_dependencies:
- black
- repo: https://github.com/hadenlabs/pre-commit-hooks
rev: e87875c92d9579ae9eff16f0994dfba42912ce0e
hooks:
- id: do-not-commit
- id: markdown-link-check
exclude: \.tpl.md$
- id: shellcheck
exclude: >
(?x)^(
.+\.provision/git/hooks/prepare-commit-msg$|
.+\.tpl.sh$|
)$
args:
- --exclude=SC1072,SC1073,SC2068
- id: validate-toml
- id: no-go-testing
- id: go-imports
- id: go-fmt
- id: golangci-lint
args:
- --fix
- --config=.github/linters/.golangci.yml
- id: terraform-docs
args:
- '--output-file=docs/include/terraform.md'
- '--output-mode=replace'
- '--sort-by-type'
- id: terraform-tflint
args:
- '--config=.github/linters/.tflint.hcl'
- id: terragrunt-fmt
- id: terraform-fmt
- id: terraform-tfsec
- id: checkov
- id: todocheck
- id: gitleaks
args:
- --path=.
- --repo-config-path=.github/linters/.gitleaks.toml
- --verbose
- repo: local
hooks:
- id: prettier
name: prettier
language: system
entry: ./node_modules/prettier/bin-prettier.js
args:
- '--write=true'
- '--list-different'
- '--config=.github/linters/prettier.config.js'
- '--ignore-path=.github/linters/.prettierignore'
files: \.(js|jsx|json|ts|tsx|mjs|d.ts|md|yml|yaml|gql|graphql|mjml)$
exclude: node_modules
- id: eslint
name: eslint
language: system
pass_filenames: true
entry: node_modules/eslint/bin/eslint.js --config=.github/linters/.eslintrc.js --ignore-path=.github/linters/.eslintignore --color
args:
- '--fix'
files: \.(js|jsx|ts|tsx|mjs|d.ts)$
- id: stylint
name: stylint
language: system
pass_filenames: true
entry: node_modules/stylelint/bin/stylelint.js --config=.github/linters/.stylintrc --syntax less **/*.less
args: [--fix]
files: \.(css|scss|sass|less)$