-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
46 lines (45 loc) · 1.25 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
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: 23.12.1
hooks:
- id: black
args:
- "--line-length=120"
- repo: 'https://github.com/pre-commit/pre-commit-hooks'
rev: v4.5.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.0.0
hooks:
- id: flake8
args:
- "--max-line-length=120"
- "--ignore=E203,W503"
- "--select=W504"
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