forked from christoph2/pyA2L
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
95 lines (94 loc) · 2.11 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
93
94
repos:
- repo: local
hooks:
- id: check-yaml
name: check-yaml
entry: check-yaml
language: python
types: [yaml]
stages: [commit]
- id: check-json
name: check-json
entry: check-json
language: python
types: [json]
stages: [commit]
- id: check-toml
name: check-toml
entry: check-toml
language: python
types: [toml]
stages: [commit]
- id: check-ast
name: check-ast
entry: check-ast
language: python
types: [python]
stages: [commit]
- id: check-builtin-literals
name: check-builtin-literals
entry: check-builtin-literals
language: python
types: [python]
stages: [commit]
- id: check-case-conflict
name: check-case-conflict
entry: check-case-conflict
language: python
types: [python]
stages: [commit]
- id: check-merge-conflict
name: check-merge-conflict
entry: check-merge-conflict
language: python
types: [text]
stages: [commit]
- id: fix-byte-order-marker
name: fix-byte-order-marker
entry: fix-byte-order-marker
language: python
types: [python]
stages: [commit]
- id: mixed-line-ending
name: mixed-line-ending
entry: mixed-line-ending
language: python
types_or: [c, c++, python]
stages: [commit]
- id: end-of-file-fixer
name: end-of-file-fixer
entry: end-of-file-fixer
language: python
types_or: [c, c++, python]
stages: [commit]
- id: trailing-whitespace-fixer
name: trailing-whitespace-fixer
entry: trailing-whitespace-fixer
language: python
types_or: [c, c++, python]
stages: [commit]
- id: reorder-python-imports
name: reorder-python-imports
entry: reorder-python-imports
language: python
types: [python]
stages: [commit]
- id: black
name: black
entry: black
language: python
types: [python]
stages: [commit]
- id: flake8
name: flake8
entry: flake8
language: python
types: [python]
stages: [commit]
- id: pytest-check
name: pytest-check
entry: pytest
language: system
pass_filenames: false
always_run: true
stages: [push]