forked from uchuhimo/amanda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
47 lines (47 loc) · 1.29 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
repos:
- repo: https://github.com/humitos/mirrors-autoflake
rev: v1.3
hooks:
- id: autoflake
- repo: https://github.com/psf/black
rev: 21.9b0
hooks:
- id: black
exclude: setup.py|.*_pb2.py
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.9.3
hooks:
- id: isort
exclude: .*_pb2.py
additional_dependencies: ["isort[pyproject]"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910-1
hooks:
- id: mypy
pass_filenames: false
additional_dependencies:
- types-protobuf
- types-six
- types-filelock
- types-setuptools
- types-toml
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v13.0.0
hooks:
- id: clang-format
# - repo: https://github.com/mverteuil/precommit-dephell
# rev: d62e4fd01b6616a673d2305d6eb0f2bd45556996
# hooks:
# - id: dephell
- repo: local
hooks:
- id: export-requirements
name: Export requeriments.txt
language: system
pass_filenames: false
entry: poetry export --without-hashes --dev -o requirements.txt
files: ^(pyproject.toml|poetry.lock)$