-
Notifications
You must be signed in to change notification settings - Fork 6
/
.pre-commit-config.yaml
66 lines (61 loc) · 1.88 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
repos:
- repo: https://github.com/hadialqattan/pycln
rev: v2.4.0 # Possible releases: https://github.com/hadialqattan/pycln/releases
hooks:
- id: pycln
- repo: 'https://github.com/psf/black'
rev: 24.10.0
hooks:
- id: black
args:
- "--line-length=120"
- repo: 'https://github.com/pre-commit/pre-commit-hooks'
rev: v5.0.0
hooks:
- id: end-of-file-fixer
exclude: '^docs/[^/]*\.svg$'
- id: requirements-txt-fixer
- id: trailing-whitespace
- id: file-contents-sorter
files: |
.gitignore
- id: check-case-conflict
- id: check-xml
- id: check-executables-have-shebangs
- id: debug-statements
- id: check-added-large-files
- id: check-symlinks
- id: debug-statements
- repo: 'https://github.com/PyCQA/flake8'
rev: 7.1.1
hooks:
- id: flake8
args:
- "--max-line-length=120"
- "--ignore=E203,W503"
- "--select=W504"
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
hooks:
- id: pyupgrade
args: [--py39-plus, --keep-runtime-typing]
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
hooks:
- id: yamllint
args: ["-d", "{extends: relaxed, rules: {empty-lines: disable, line-length: {max: 1500}}}", --strict, --format, parsable]
- repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt
rev: 0.2.3
hooks:
- id: yamlfmt
args: [--mapping, '2', --sequence, '4', --offset, '2', --preserve-quotes, --implicit_start, --width, '1500']
exclude: tests/fixtures/schema-enum.yaml
ci:
autofix_commit_msg: |
[pre-commit.ci] auto fixes from pre-commit.ci hooks
autofix_prs: true
autoupdate_branch: ''
autoupdate_commit_msg: '[pre-commit.ci] pre-commit autoupdate'
autoupdate_schedule: weekly
skip: []
submodules: false