forked from Sceptre/sceptre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
37 lines (36 loc) · 957 Bytes
/
.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
default_language_version:
python: python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.0
hooks:
- id: flake8
- repo: https://github.com/adrienverge/yamllint
rev: v1.26.1
hooks:
- id: yamllint
- repo: https://github.com/awslabs/cfn-python-lint
rev: v0.61.5
hooks:
- id: cfn-python-lint
args:
- "-i=E0000"
- "-i=E1001"
- "-i=E3012"
- "-i=W6001"
exclude: |
(?x)(
^integration-tests/sceptre-project/config/|
^integration-tests/sceptre-project/templates/jinja/|
^tests/fixtures-vpc/config/|
^tests/fixtures/config/|
^temp/|
^.circleci/|
^.pre-commit-config.yaml
)