-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
45 lines (39 loc) · 969 Bytes
/
.pre-commit-config.yaml
File metadata and controls
45 lines (39 loc) · 969 Bytes
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
ci:
autofix_prs: true
autoupdate_schedule: quarterly
default_language_version:
python: python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: end-of-file-fixer
name: End-of-file fixer
- id: trailing-whitespace
name: Remove trailing whitespaces
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: Sort imports
- repo: https://github.com/google/yapf
rev: v0.43.0
hooks:
- id: yapf
name: Format code
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
name: Check PEP8
args: [
"--max-line-length=80",
"--extend-ignore=E203",
"--per-file-ignores=*/__init__.py:F401,F403"
]
- repo: https://github.com/regebro/pyroma
rev: "4.1"
hooks:
- id: pyroma
name: Check packaging
args: [ --min=10, . ]