-
Notifications
You must be signed in to change notification settings - Fork 8
/
.pre-commit-config.yaml
55 lines (55 loc) · 1.8 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
repos:
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v1.5.2
hooks:
- id: autopep8
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
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: 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 --disable=W0612
language: system
types: [python]
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.1.7
hooks:
- id: remove-tabs
- id: remove-crlf