forked from elbakramer/koapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
59 lines (59 loc) · 1.28 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
# See https://pre-commit.com/ for usage and config
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: check-yaml
- id: check-toml
- repo: local
hooks:
- id: pyupgrade
name: pyupgrade
stages: [commit]
language: system
entry: poetry run pyupgrade --keep-runtime-typing
types: [python]
- id: isort
name: isort
stages: [commit]
language: system
entry: poetry run isort
types_or: [cython, pyi, python]
args: [--filter-files]
require_serial: true
- id: black
name: black
stages: [commit]
language: system
entry: poetry run black
types_or: [python, pyi]
require_serial: true
- id: flake8
name: flake8
stages: [manual]
language: system
entry: poetry run flake8
types: [python]
require_serial: true
- id: pylint
name: pylint
stages: [manual]
language: system
entry: poetry run pylint
types: [python]
args: [--errors-only]
require_serial: true
- id: mypy
name: mypy
stages: [manual]
language: system
entry: poetry run mypy
types: [python]
require_serial: true
- id: pytest
name: pytest
stages: [push]
language: system
entry: poetry run pytest --cov
types: [python]
pass_filenames: false