-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy path.pre-commit-config.yaml
116 lines (100 loc) · 3.64 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.3.0
hooks:
- id: check-yaml
- id: check-added-large-files
- id: check-byte-order-marker
- id: check-case-conflict
- id: check-merge-conflict
- id: check-symlinks
- id: debug-statements
- id: mixed-line-ending
- repo: local
hooks:
- id: cli
name: cli
entry: bash scripts/qa/old/lint-package.sh packages/botonic-cli
language: system
files: ^packages/botonic-cli/
- id: core
name: core
entry: scripts/qa/old/lint-package.sh packages/botonic-core
language: system
files: ^packages/botonic-core/
- id: contentful
name: contentful
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-contentful
language: system
files: ^packages/botonic-plugin-contentful/
- id: dashbot
name: dashbot
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-dashbot
language: system
files: ^packages/botonic-plugin-dashbot/
- id: dialogflow
name: dialogflow
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-dialogflow
language: system
files: ^packages/botonic-plugin-dialogflow/
- id: dynamodb
name: dynamodb
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-dynamodb
language: system
files: ^packages/botonic-plugin-dynamodb/
- id: luis
name: luis
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-luis
language: system
files: ^packages/botonic-plugin-luis/
- id: segment
name: segment
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-segment
language: system
files: ^packages/botonic-plugin-segment/
- id: watson
name: watson
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-watson
language: system
files: ^packages/botonic-plugin-watson/
- id: react
name: react
entry: scripts/qa/old/lint-package.sh packages/botonic-react
language: system
files: ^packages/botonic-react/
- id: google-analytics
name: google-analytics
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-google-analytics
language: system
files: ^packages/botonic-plugin-google-analytics/
- id: inbenta
name: inbenta
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-inbenta
language: system
files: ^packages/botonic-plugin-inbenta/
- id: docs
name: docs
entry: scripts/qa/old/lint-package.sh docs/
language: system
files: ^docs/
- id: plugin-flow-builder
name: plugin-flow-builder
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-flow-builder
language: system
files: ^packages/botonic-plugin-flow-builder/
- id: hubtype-analytics
name: hubtype-analytics
entry: scripts/qa/old/lint-package.sh packages/botonic-plugin-hubtype-analytics
language: system
files: ^packages/botonic-plugin-hubtype-analytics/
- repo: https://github.com/Yelp/detect-secrets
rev: v1.4.0
hooks:
- id: detect-secrets
args:
['--baseline', '.secrets.baseline', '--exclude-files ', .*/tests/.*']
exclude: package.lock.json
name: Detect secrets
description: Detects high entropy strings that are likely to be passwords.