-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
60 lines (57 loc) · 1.52 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
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.8.0
hooks:
- id: black
args:
- "--line-length=120"
- repo: 'https://github.com/pre-commit/pre-commit-hooks'
rev: v4.6.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.17.0
hooks:
- id: pyupgrade
args: [--py39-plus, --keep-runtime-typing]
exclude: |
(?x)(
^tests/tpl/|
^tests/acl/tpl/|
^tests/dataout/all.html
^lib/acltk/(caf|ios|fwsm|acl)\.py$|
)
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