-
Notifications
You must be signed in to change notification settings - Fork 7
/
.pre-commit-config.yaml
71 lines (64 loc) · 1.39 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
67
68
69
70
71
ci:
autoupdate_schedule: monthly
autofix_prs: true
skip: [pylint, mypy]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: double-quote-string-fixer
types: [python]
- id: end-of-file-fixer
- id: mixed-line-ending
types: [python]
- id: trailing-whitespace
types: [python]
- repo: https://github.com/google/yapf
rev: v0.33.0
hooks:
- id: yapf
name: yapf
types: [python]
exclude: &exclude_files >
(?x)^(
docs/.*|
)$
args: ['-i']
additional_dependencies: ['toml']
- repo: https://github.com/ikamensh/flynt/
rev: '0.78'
hooks:
- id: flynt
args: [
'--line-length=120',
'--fail-on-change',
]
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.2
hooks:
- id: pyupgrade
args: [
'--py37-plus'
]
exclude: '^(docs/)|(examples/)'
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
types: [python]
language: system
exclude: '^(docs/)|(examples/)'
- id: mypy
name: mypy
entry: mypy
args: [--config-file=pyproject.toml]
language: python
types: [python]
require_serial: true
pass_filenames: true
files: >-
(?x)^(
aiida_fleur/data/.*py|
aiida_fleur/tools/xml_aiida_modifiers.py|
)$