-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
41 lines (40 loc) · 1.13 KB
/
.pre-commit-config.yaml
File metadata and controls
41 lines (40 loc) · 1.13 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
36
37
38
39
40
41
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: check-added-large-files
language_version: python3
- id: check-ast
language_version: python3
- id: check-case-conflict
language_version: python3
- id: check-docstring-first
language_version: python3
- id: check-json
language_version: python3
- id: check-merge-conflict
language_version: python3
- id: check-xml
language_version: python3
- id: check-yaml
language_version: python3
- id: debug-statements
language_version: python3
- id: detect-private-key
language_version: python3
- id: end-of-file-fixer
language_version: python3
- id: requirements-txt-fixer
language_version: python3
- id: trailing-whitespace
language_version: python3
- repo: git://github.com/asottile/reorder_python_imports
rev: v1.0.1
hooks:
- id: reorder-python-imports
language_version: python3
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v1.4
hooks:
- id: autopep8
language_version: python3
args: ['-i', '--max-line-length=120']