-
Notifications
You must be signed in to change notification settings - Fork 5
/
.pre-commit-config.yaml
90 lines (79 loc) · 2.02 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
# ============================================================================
# Remote
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.0.1"
hooks:
- id: check-ast
- id: check-executables-have-shebangs
- id: check-json
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: check-toml
- id: check-xml
- id: check-yaml
args:
- --allow-multiple-documents
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: trailing-whitespace
# ============================================================================
# Local
- repo: local
hooks:
- id: flake8
name: flake8
language: system
types: [python]
require_serial: true
entry: poetry run flake8
- repo: local
hooks:
- id: black
name: black
language: system
types: [python]
require_serial: true
entry: poetry run black
- repo: local
hooks:
- id: mypy
name: mypy
language: system
types: [python]
require_serial: true
pass_filenames: false
entry: poetry run mypy .
- repo: local
hooks:
- id: pdoc
name: pdoc
language: script
types: [python]
pass_filenames: false
require_serial: true
exclude: ^tests/
entry: bin/pdoc
- repo: local
hooks:
- id: requirements
name: requirements
language: system
files: "^poetry.lock$"
pass_filenames: false
entry: >-
poetry export
--format "requirements.txt"
--output "requirements.txt"
--without-hashes
# ============================================================================
exclude: |
(?x)(
^docs/|
^coverage.xml$|
^poetry.lock$|
^CHANGELOG.md$|
^requirements.txt$
)