-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pre-commit-config.yaml
60 lines (54 loc) · 1.4 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
# # Install pre-commit hooks via
# pre-commit install
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
- id: double-quote-string-fixer
- id: end-of-file-fixer
exclude: &exclude_pre_commit_hooks >
(?x)^(
tests/.*(?<!\.py)$|
docs/source/.+\.aiida/repo/.+|
)$
- id: fix-encoding-pragma
- id: mixed-line-ending
- id: trailing-whitespace
exclude: *exclude_pre_commit_hooks
- id: check-yaml
- repo: https://github.com/pre-commit/mirrors-yapf
rev: v0.32.0
hooks:
- id: yapf
name: yapf
types: [python]
exclude: &exclude_files >
(?x)^(
docs/.* |
aiida_orca/parsers/cclib/.* |
)$
args: ['-i']
additional_dependencies: ['toml']
- repo: local
hooks:
- id: mypy
name: mypy
entry: mypy
args: [--config-file=pyproject.toml]
language: python
types: [python]
require_serial: true
pass_filenames: true
files: >-
(?x)^(
aiida_orca/calculations/orca_orca.py |
aiida_orca/parsers/__init__.py |
aiida_orca/utils/input_generator.py |
aiida_orca/workchains/base.py
)$
- id: pylint
name: pylint
entry: pylint
types: [python]
language: system
exclude: *exclude_files