forked from kubeflow/pipelines
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pre-commit-config.yaml
43 lines (42 loc) · 1.16 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
repos:
# other fast helpful checks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: check-yaml
- id: check-json
- id: end-of-file-fixer
- id: trailing-whitespace
- id: debug-statements
- id: check-merge-conflict
- id: name-tests-test
- id: double-quote-string-fixer
- id: no-commit-to-branch
args: [--branch, master]
# required formatting jobs (run these last)
# add comment "noqa" to ignore an import that should not be removed
# (e.g., for an import with desired side-effects)
- repo: https://github.com/hadialqattan/pycln
rev: v2.1.1
hooks:
- id: pycln
name: pycln
language: python
entry: pycln --all
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
name: isort
entry: isort --profile google
- repo: https://github.com/pre-commit/mirrors-yapf
rev: "v0.32.0"
hooks:
- id: yapf
- repo: https://github.com/pycqa/docformatter
rev: v1.4
hooks:
- id: docformatter
name: docformatter
language: python
entry: docformatter -i -r