-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
46 lines (46 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: check-merge-conflict
- id: debug-statements
- id: mixed-line-ending
- id: check-case-conflict
- id: check-yaml
- repo: https://github.com/asottile/reorder_python_imports
rev: v2.3.6
hooks:
- id: reorder-python-imports
args: [--application-directories=python,
--unclassifiable-application-module=_ld_graph]
- repo: https://github.com/asottile/pyupgrade
rev: v2.7.4
hooks:
- id: pyupgrade
args: [--py3-plus, --py37-plus]
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
language_version: python3
args: [tspyro, setup.py]
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
hooks:
- id: flake8
args: ["--config=python/.flake8", "--max-line-length=89"]
additional_dependencies: ["flake8-bugbear==20.1.4", "flake8-builtins==1.5.2"]
- repo: https://github.com/asottile/blacken-docs
rev: v1.9.1
hooks:
- id: blacken-docs
args: [--skip-errors]
additional_dependencies: [black==20.8b1]
language_version: python3
- repo: https://github.com/pre-commit/mirrors-mypy
rev: '44afb68a9695d04030edc5cdc5a4fc4f17e4f9e2'
hooks:
- id: mypy
pass_filenames: False
args: ["tspyro"]
language_version: python3