-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
35 lines (35 loc) · 1.02 KB
/
.pre-commit-config.yaml
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
- repo: git://github.com/pre-commit/pre-commit-hooks
sha: 5da199bb8d60f764c0f77a20b0a1dc3a7640bcdd
hooks:
- id: flake8
language_version: python3
args:
- --ignore=E501,F401,E712,W503
exclude: setup.py
- id: check-yaml
language_version: python3
- id: end-of-file-fixer
language_version: python3
- id: trailing-whitespace
language_version: python3
- repo: git://github.com/pre-commit/mirrors-pylint
sha: v1.6.4
hooks:
- id: pylint
language_version: python3
args:
- --rcfile=.pylintrc
exclude: setup.py
- repo: git://github.com/asottile/reorder_python_imports
sha: v0.3.0
hooks:
- id: reorder-python-imports
language_version: python3
- repo: git://github.com/FalconSocial/pre-commit-mirrors-pep257
sha: 149e61b7a717945143fe51f010fe1c576e729a9f
hooks:
- id: pep257
language_version: python3
args:
- --ignore=D301,D203
exclude: setup.py