-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
79 lines (79 loc) · 2.76 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
repos:
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.0.0
hooks:
- id: mypy
exclude: "^example/python_grpc_proto_code|^grpc_gateway/proto"
additional_dependencies:
[ types-protobuf>=4.21.0.0]
- repo: https://github.com/PyCQA/isort
rev: 5.9.3
hooks:
- id: isort
exclude: "^example/python_grpc_proto_code|^grpc_gateway/proto"
- repo: https://github.com/psf/black
rev: 23.1.0
hooks:
- id: black
exclude: "^example/python_grpc_proto_code|^grpc_gateway/proto"
- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
hooks:
- id: flake8
exclude: "^example/python_grpc_proto_code|^grpc_gateway/proto"
- repo: https://github.com/myint/autoflake
rev: v2.0.1
hooks:
- id: autoflake
args: ['--in-place', '--remove-all-unused-imports', '--remove-unused-variable', '--ignore-init-module-imports']
exclude: "^example/python_grpc_proto_code|^grpc_gateway/proto"
- repo: https://github.com/python-poetry/poetry
rev: '1.3.0' # add version here
hooks:
- id: poetry-check
- repo: local
hooks:
- id: local-poetry-lock
name: poetry-lock
description: run poetry lock to update lock file
entry: poetry lock
language: python
language_version: python3.8
pass_filenames: false
args: [ "--no-update" ]
- id: local-poetry-export
name: my-poetry-export
entry: poetry export
language: python
language_version: python3
pass_filenames: false
args: ["-o", "requirements.txt", "--without-hashes", "--with-credentials", "--only=main"]
- id: local-poetry-export-test
name: my-poetry-export-test
entry: poetry export
language: python
language_version: python3
pass_filenames: false
args: ["-o", "requirements-test.txt", "--without-hashes", "--with-credentials", "--only=test"]
- id: local-poetry-export-no-framework-test
name: my-poetry-export-no-framework-test
entry: poetry export
language: python
language_version: python3
pass_filenames: false
args: [ "-o", "requirements-framework.txt", "--without-hashes", "--with-credentials", "--only=framework"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-ast
- id: check-byte-order-marker
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-json
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending