forked from munnox/unix_config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
92 lines (87 loc) · 2.32 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
91
92
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-json
# exclude vscode since they use json with comments
exclude: configs/vscode
- id: check-toml
- id: check-added-large-files
args: ['--maxkb=1024']
- id: detect-private-key
- repo: https://github.com/pycqa/isort
rev: 5.9.3
hooks:
- id: isort
name: isort (python)
- id: isort
name: isort (cython)
types: [cython]
- id: isort
name: isort (pyi)
types: [pyi]
- repo: https://github.com/psf/black
rev: 21.8b0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: '3.9.2'
hooks:
- id: flake8
exclude: ^(services|setup|docs)/
- repo: https://github.com/pycqa/pylint
rev: v2.10.2
hooks:
- id: pylint
exclude: ^(services|setup|docs)/
args:
# - --max-line-length=80
# - --ignore-patterns="^services/**/*.py"
- --ignore-imports=yes
- -d duplicate-code
- repo: local
hooks:
# - id: isort
# name: isort
# stages: [commit]
# language: system
# entry: pipenv run isort
# types: [python]
# - id: black
# name: black
# stages: [commit]
# language: system
# entry: pipenv run black
# types: [python]
# - id: flake8
# name: flake8
# stages: [commit]
# language: system
# entry: pipenv run flake8 -v
# types: [python]
# exclude: setup.py,services/
# - id: mypy
# name: mypy
# stages: [commit]
# language: system
# entry: pipenv run mypy
# types: [python]
# pass_filenames: false
# - id: pytest
# name: pytest
# stages: [commit]
# language: system
# entry: pipenv run pytest -s
# types: [python]
- id: pytest-cov
name: pytest
stages: [push]
language: system
entry: pipenv run pytest --cov --cov-fail-under=100
types: [python]
pass_filenames: false