-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pre-commit-config.yaml
89 lines (89 loc) · 1.7 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
exclude: ^tests/test_files
repos:
-
repo: 'git://github.com/pre-commit/pre-commit-hooks'
rev: v2.2.1
hooks:
-
id: fix-encoding-pragma
-
id: trailing-whitespace
-
id: flake8
args:
- '--max-line-length=120'
-
id: check-merge-conflict
-
id: double-quote-string-fixer
-
id: end-of-file-fixer
-
id: name-tests-test
-
id: debug-statements
-
id: check-added-large-files
-
id: check-ast
-
id: check-byte-order-marker
-
id: check-case-conflict
-
id: check-docstring-first
-
id: check-executables-have-shebangs
types:
- python
-
id: check-json
-
id: check-vcs-permalinks
-
id: mixed-line-ending
-
id: name-tests-test
-
id: pretty-format-json
args:
- '--autofix'
- '--top-keys=_id'
-
id: sort-simple-yaml
files: .yaml$
-
id: check-symlinks
-
id: check-yaml
-
id: detect-private-key
-
id: requirements-txt-fixer
-
id: trailing-whitespace
-
repo: local
hooks:
-
id: pep257
name: pep257
entry: 'python -m pep257'
language: system
types:
- python
-
id: pylint
name: pylint
entry: 'python -m pylint --rcfile=pylintrc'
language: system
types:
- python
-
repo: 'git://github.com/Lucas-C/pre-commit-hooks'
rev: v1.1.6
hooks:
-
id: remove-tabs
-
id: remove-crlf