forked from teemtee/fmf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
40 lines (37 loc) · 927 Bytes
/
.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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: 'v1.5.7'
hooks:
- id: autopep8
args:
- --recursive
- --in-place
- --aggressive
- --aggressive
- --hang-closing
- --max-line-length=99
- repo: https://github.com/PyCQA/isort
rev: "5.8.0"
hooks:
- id: isort
- repo: https://github.com/pycqa/flake8
rev: "4.0.1"
hooks:
- id: flake8
args:
- --max-line-length=99
files: >
(?x)^(
bin/.*|
examples/.*|
fmf/.*|
tests/.*
)$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v3.4.0"
hooks:
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace