-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
55 lines (49 loc) · 1.04 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
---
fail_fast: true
repos:
- repo: local
hooks:
- id: black
name: black
entry: black
language: python
require_serial: true
types: [python]
- repo: local
hooks:
- id: isort
name: isort
entry: isort
language: python
require_serial: true
types: [python]
- repo: local
hooks:
- id: flake8
name: flake8
entry: flake8
language: python
types: [python]
- repo: local
hooks:
- id: pylint
name: pylint
# https://github.com/pre-commit/pre-commit/issues/1129
entry: env PYTHONPATH=. pylint
language: python
types: [python]
args: [--score=n]
exclude: ^tests/
- repo: local
hooks:
- id: mypy
name: mypy
entry: mypy .
language: python
types: [python]
pass_filenames: false
always_run: true
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.26.3
hooks:
- id: yamllint