forked from minos-framework/minos-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
94 lines (81 loc) · 4.1 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
repos:
- repo: local
hooks:
- id: minos-microservice-aggregate-check
pass_filenames: false
entry: make --directory=packages/core/minos-microservice-aggregate check
name: Check minos-microservice-aggregate
files: ^packages/core/minos-microservice-aggregate/
language: system
- id: minos-microservice-common-check
pass_filenames: false
entry: make --directory=packages/core/minos-microservice-common check
name: Check minos-microservice-common
files: ^packages/core/minos-microservice-common/
language: system
- id: minos-microservice-cqrs-check
pass_filenames: false
entry: make --directory=packages/core/minos-microservice-cqrs check
name: Check minos-microservice-cqrs
files: ^packages/core/minos-microservice-cqrs/
language: system
- id: minos-microservice-networks-check
pass_filenames: false
entry: make --directory=packages/core/minos-microservice-networks check
name: Check minos-microservice-networks
files: ^packages/core/minos-microservice-networks/
language: system
- id: minos-microservice-saga-check
pass_filenames: false
entry: make --directory=packages/core/minos-microservice-saga check
name: Check minos-microservice-saga
files: ^packages/core/minos-microservice-saga/
language: system
- id: minos-broker-kafka-check
pass_filenames: false
entry: make --directory=packages/plugins/minos-broker-kafka check
name: Check minos-broker-kafka
files: ^packages/plugins/minos-broker-kafka/
language: system
- id: minos-database-aiopg-check
pass_filenames: false
entry: make --directory=packages/plugins/minos-database-aiopg check
name: Check minos-database-aiopg
files: ^packages/plugins/minos-database-aiopg/
language: system
- id: minos-database-lmdb-check
pass_filenames: false
entry: make --directory=packages/plugins/minos-database-lmdb check
name: Check minos-database-lmdb
files: ^packages/plugins/minos-database-lmdb/
language: system
- id: minos-discovery-minos-check
pass_filenames: false
entry: make --directory=packages/plugins/minos-discovery-minos check
name: Check minos-discovery-minos
files: ^packages/plugins/minos-discovery-minos/
language: system
- id: minos-discovery-kong-check
pass_filenames: false
entry: make --directory=packages/plugins/minos-discovery-kong check
name: Check minos-discovery-kong
files: ^packages/plugins/minos-discovery-kong/
language: system
- id: minos-http-aiohttp-check
pass_filenames: false
entry: make --directory=packages/plugins/minos-http-aiohttp check
name: Check minos-http-aiohttp
files: ^packages/plugins/minos-http-aiohttp/
language: system
- id: minos-router-graphql-check
pass_filenames: false
entry: make --directory=packages/plugins/minos-router-graphql check
name: Check minos-router-graphql
files: ^packages/plugins/minos-router-graphql/
language: system
- id: minos-broker-rabbitmq-check
pass_filenames: false
entry: make --directory=packages/plugins/minos-broker-rabbitmq check
name: Check minos-broker-rabbitmq
files: ^packages/plugins/minos-broker-rabbitmq/
language: system