@cdktn/provider-docker 12.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +230 -0
- package/.jsii +46911 -0
- package/LICENSE +355 -0
- package/README.md +94 -0
- package/lib/buildx-builder/index.d.ts +764 -0
- package/lib/buildx-builder/index.js +1791 -0
- package/lib/config/index.d.ts +68 -0
- package/lib/config/index.js +129 -0
- package/lib/container/index.d.ts +1845 -0
- package/lib/container/index.js +4085 -0
- package/lib/data-docker-image/index.d.ts +59 -0
- package/lib/data-docker-image/index.js +115 -0
- package/lib/data-docker-logs/index.d.ts +153 -0
- package/lib/data-docker-logs/index.js +325 -0
- package/lib/data-docker-network/index.d.ts +90 -0
- package/lib/data-docker-network/index.js +207 -0
- package/lib/data-docker-plugin/index.d.ts +66 -0
- package/lib/data-docker-plugin/index.js +134 -0
- package/lib/data-docker-registry-image/index.d.ts +70 -0
- package/lib/data-docker-registry-image/index.js +136 -0
- package/lib/data-docker-registry-image-manifests/index.d.ts +161 -0
- package/lib/data-docker-registry-image-manifests/index.js +366 -0
- package/lib/image/index.d.ts +871 -0
- package/lib/image/index.js +2003 -0
- package/lib/index.d.ts +22 -0
- package/lib/index.js +27 -0
- package/lib/lazy-index.d.ts +4 -0
- package/lib/lazy-index.js +25 -0
- package/lib/network/index.d.ts +334 -0
- package/lib/network/index.js +666 -0
- package/lib/plugin/index.d.ts +200 -0
- package/lib/plugin/index.js +414 -0
- package/lib/provider/index.d.ts +186 -0
- package/lib/provider/index.js +342 -0
- package/lib/registry-image/index.d.ts +155 -0
- package/lib/registry-image/index.js +320 -0
- package/lib/secret/index.d.ts +132 -0
- package/lib/secret/index.js +281 -0
- package/lib/service/index.d.ts +2282 -0
- package/lib/service/index.js +5760 -0
- package/lib/tag/index.d.ts +80 -0
- package/lib/tag/index.js +154 -0
- package/lib/volume/index.d.ts +154 -0
- package/lib/volume/index.js +312 -0
- package/package.json +152 -0
- package/tsconfig.eslint.json +34 -0
package/.eslintrc.json
ADDED
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
{
|
|
2
|
+
"env": {
|
|
3
|
+
"jest": true,
|
|
4
|
+
"node": true
|
|
5
|
+
},
|
|
6
|
+
"root": true,
|
|
7
|
+
"plugins": [
|
|
8
|
+
"@typescript-eslint",
|
|
9
|
+
"import"
|
|
10
|
+
],
|
|
11
|
+
"parser": "@typescript-eslint/parser",
|
|
12
|
+
"parserOptions": {
|
|
13
|
+
"ecmaVersion": 2018,
|
|
14
|
+
"sourceType": "module",
|
|
15
|
+
"project": "./tsconfig.eslint.json"
|
|
16
|
+
},
|
|
17
|
+
"extends": [
|
|
18
|
+
"plugin:import/typescript"
|
|
19
|
+
],
|
|
20
|
+
"settings": {
|
|
21
|
+
"import/parsers": {
|
|
22
|
+
"@typescript-eslint/parser": [
|
|
23
|
+
".ts",
|
|
24
|
+
".tsx"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"import/resolver": {
|
|
28
|
+
"node": {},
|
|
29
|
+
"typescript": {
|
|
30
|
+
"project": "./tsconfig.eslint.json"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"ignorePatterns": [
|
|
35
|
+
"*.js",
|
|
36
|
+
"!.projenrc.js",
|
|
37
|
+
"*.d.ts",
|
|
38
|
+
"node_modules/",
|
|
39
|
+
"*.generated.ts",
|
|
40
|
+
"coverage"
|
|
41
|
+
],
|
|
42
|
+
"rules": {
|
|
43
|
+
"@typescript-eslint/no-require-imports": [
|
|
44
|
+
"error"
|
|
45
|
+
],
|
|
46
|
+
"indent": [
|
|
47
|
+
"off"
|
|
48
|
+
],
|
|
49
|
+
"@typescript-eslint/indent": [
|
|
50
|
+
"error",
|
|
51
|
+
2
|
|
52
|
+
],
|
|
53
|
+
"quotes": [
|
|
54
|
+
"error",
|
|
55
|
+
"single",
|
|
56
|
+
{
|
|
57
|
+
"avoidEscape": true
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"comma-dangle": [
|
|
61
|
+
"error",
|
|
62
|
+
"always-multiline"
|
|
63
|
+
],
|
|
64
|
+
"comma-spacing": [
|
|
65
|
+
"error",
|
|
66
|
+
{
|
|
67
|
+
"before": false,
|
|
68
|
+
"after": true
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"no-multi-spaces": [
|
|
72
|
+
"error",
|
|
73
|
+
{
|
|
74
|
+
"ignoreEOLComments": false
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"array-bracket-spacing": [
|
|
78
|
+
"error",
|
|
79
|
+
"never"
|
|
80
|
+
],
|
|
81
|
+
"array-bracket-newline": [
|
|
82
|
+
"error",
|
|
83
|
+
"consistent"
|
|
84
|
+
],
|
|
85
|
+
"object-curly-spacing": [
|
|
86
|
+
"error",
|
|
87
|
+
"always"
|
|
88
|
+
],
|
|
89
|
+
"object-curly-newline": [
|
|
90
|
+
"error",
|
|
91
|
+
{
|
|
92
|
+
"multiline": true,
|
|
93
|
+
"consistent": true
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"object-property-newline": [
|
|
97
|
+
"error",
|
|
98
|
+
{
|
|
99
|
+
"allowAllPropertiesOnSameLine": true
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"keyword-spacing": [
|
|
103
|
+
"error"
|
|
104
|
+
],
|
|
105
|
+
"brace-style": [
|
|
106
|
+
"error",
|
|
107
|
+
"1tbs",
|
|
108
|
+
{
|
|
109
|
+
"allowSingleLine": true
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"space-before-blocks": [
|
|
113
|
+
"error"
|
|
114
|
+
],
|
|
115
|
+
"curly": [
|
|
116
|
+
"error",
|
|
117
|
+
"multi-line",
|
|
118
|
+
"consistent"
|
|
119
|
+
],
|
|
120
|
+
"@typescript-eslint/member-delimiter-style": [
|
|
121
|
+
"error"
|
|
122
|
+
],
|
|
123
|
+
"import/no-extraneous-dependencies": [
|
|
124
|
+
"error",
|
|
125
|
+
{
|
|
126
|
+
"devDependencies": [
|
|
127
|
+
"**/test/**",
|
|
128
|
+
"**/build-tools/**"
|
|
129
|
+
],
|
|
130
|
+
"optionalDependencies": false,
|
|
131
|
+
"peerDependencies": true
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"import/no-unresolved": [
|
|
135
|
+
"error"
|
|
136
|
+
],
|
|
137
|
+
"import/order": [
|
|
138
|
+
"warn",
|
|
139
|
+
{
|
|
140
|
+
"groups": [
|
|
141
|
+
"builtin",
|
|
142
|
+
"external"
|
|
143
|
+
],
|
|
144
|
+
"alphabetize": {
|
|
145
|
+
"order": "asc",
|
|
146
|
+
"caseInsensitive": true
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"no-duplicate-imports": [
|
|
151
|
+
"error"
|
|
152
|
+
],
|
|
153
|
+
"no-shadow": [
|
|
154
|
+
"off"
|
|
155
|
+
],
|
|
156
|
+
"@typescript-eslint/no-shadow": [
|
|
157
|
+
"error"
|
|
158
|
+
],
|
|
159
|
+
"key-spacing": [
|
|
160
|
+
"error"
|
|
161
|
+
],
|
|
162
|
+
"semi": [
|
|
163
|
+
"error",
|
|
164
|
+
"always"
|
|
165
|
+
],
|
|
166
|
+
"quote-props": [
|
|
167
|
+
"error",
|
|
168
|
+
"consistent-as-needed"
|
|
169
|
+
],
|
|
170
|
+
"no-multiple-empty-lines": [
|
|
171
|
+
"error"
|
|
172
|
+
],
|
|
173
|
+
"max-len": [
|
|
174
|
+
"error",
|
|
175
|
+
{
|
|
176
|
+
"code": 150,
|
|
177
|
+
"ignoreUrls": true,
|
|
178
|
+
"ignoreStrings": true,
|
|
179
|
+
"ignoreTemplateLiterals": true,
|
|
180
|
+
"ignoreComments": true,
|
|
181
|
+
"ignoreRegExpLiterals": true
|
|
182
|
+
}
|
|
183
|
+
],
|
|
184
|
+
"@typescript-eslint/no-floating-promises": [
|
|
185
|
+
"error"
|
|
186
|
+
],
|
|
187
|
+
"no-return-await": [
|
|
188
|
+
"off"
|
|
189
|
+
],
|
|
190
|
+
"@typescript-eslint/return-await": [
|
|
191
|
+
"error"
|
|
192
|
+
],
|
|
193
|
+
"no-trailing-spaces": [
|
|
194
|
+
"error"
|
|
195
|
+
],
|
|
196
|
+
"dot-notation": [
|
|
197
|
+
"error"
|
|
198
|
+
],
|
|
199
|
+
"no-bitwise": [
|
|
200
|
+
"error"
|
|
201
|
+
],
|
|
202
|
+
"@typescript-eslint/member-ordering": [
|
|
203
|
+
"error",
|
|
204
|
+
{
|
|
205
|
+
"default": [
|
|
206
|
+
"public-static-field",
|
|
207
|
+
"public-static-method",
|
|
208
|
+
"protected-static-field",
|
|
209
|
+
"protected-static-method",
|
|
210
|
+
"private-static-field",
|
|
211
|
+
"private-static-method",
|
|
212
|
+
"field",
|
|
213
|
+
"constructor",
|
|
214
|
+
"method"
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
]
|
|
218
|
+
},
|
|
219
|
+
"overrides": [
|
|
220
|
+
{
|
|
221
|
+
"files": [
|
|
222
|
+
".projenrc.js"
|
|
223
|
+
],
|
|
224
|
+
"rules": {
|
|
225
|
+
"@typescript-eslint/no-require-imports": "off",
|
|
226
|
+
"import/no-extraneous-dependencies": "off"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
]
|
|
230
|
+
}
|