-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
103 lines (94 loc) · 2.77 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
95
96
97
98
99
100
101
102
103
exclude: "genproto/"
fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-json
- id: check-yaml
- id: debug-statements
- id: name-tests-test
- id: requirements-txt-fixer
# Enable if single quote strings are needed
# - id: double-quote-string-fixer
- repo: git://github.com/dnephin/pre-commit-golang
rev: master
hooks:
# - id: go-fmt
- id: go-vet
- id: go-lint
- id: go-imports
# - id: go-cyclo
# args: [-over=15]
- id: validate-toml
- id: no-go-testing
# - id: gometalinter
- id: golangci-lint
# - id: go-critic
- id: go-unit-tests
- id: go-build
- repo: https://github.com/asottile/pyupgrade
rev: v1.12.0
hooks:
- id: pyupgrade
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.4.0
hooks:
- id: reorder-python-imports
language_version: python3
- repo: https://github.com/asottile/add-trailing-comma
rev: v1.0.0
hooks:
- id: add-trailing-comma
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
# This hook will be enabled later
# - repo: https://github.com/Lucas-C/pre-commit-hooks-bandit
# rev: v1.0.3
# hooks:
# - id: python-bandit-vulnerability-check
# args: [-l, --recursive, -x, tests]
# files: .py$
- repo: [email protected]:humitos/mirrors-autoflake.git
rev: v1.1
hooks:
- id: autoflake
args:
[
# "--in-place",
"--remove-all-unused-imports",
"--remove-unused-variable",
]
- repo: [email protected]:myint/docformatter.git
rev: v1.1
hooks:
- id: docformatter
args: ['--in-place', '--wrap-summaries=80', '--wrap-descriptions=80', '--pre-summary-newline']
- repo: https://github.com/ambv/black
rev: stable
hooks:
- id: black
language_version: python3.6
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.7
hooks:
- id: flake8
args: ["--max-line-length=88", "--ignore=D400,E231,W503,D401,D205"]
# More plugins: https://github.com/DmytroLitvinov/awesome-flake8-extensions
additional_dependencies:
[
flake8-tidy-imports,
flake8-docstrings,
flake8-django,
flake8-bugbear,
"flake8-string-format",
"flake8-blind-except",
"flake8-commas",
"flake8-comprehensions",
"flake8-deprecated",
]