Skip to content

Commit 10ea0ea

Browse files
committed
Merge branch 'main' of https://github.com/zowe/zowe-cli-sample-scripts into fix-56
Signed-off-by: Fernando Rijo Cedeno <37381190+zFernand0@users.noreply.github.com>
2 parents 856c1fc + 195b90d commit 10ea0ea

39 files changed

+3729
-3631
lines changed

.eslintrc.js

Lines changed: 0 additions & 71 deletions
This file was deleted.

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
omit-lockfile-registry-resolved=true

Jenkins/Application Monitoring/Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* This program and the accompanying materials are made available and may be used, at your option, under either:
33
* - Eclipse Public License v2.0, available at https://www.eclipse.org/legal/epl-v20.html, OR
44
* - Apache License, version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
5-
*
5+
*
66
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
7-
*
7+
*
88
* Copyright Contributors to the Zowe Project.
9-
*
9+
*
1010
*/
1111

1212
def DISTRIBUTION_LIST = "comma_separated_email_addresses_for_people_that_need_to_be_alerted"

Jenkins/Simple Pipeline/Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* This program and the accompanying materials are made available and may be used, at your option, under either:
33
* - Eclipse Public License v2.0, available at https://www.eclipse.org/legal/epl-v20.html, OR
44
* - Apache License, version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
5-
*
5+
*
66
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
7-
*
7+
*
88
* Copyright Contributors to the Zowe Project.
9-
*
9+
*
1010
*/
1111

1212
pipeline {

Twilio/Twilio-CA-ESP-Sample/.eslintrc.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
const maxLines = 150;
12
module.exports = {
23
"root": true,
34
"env": {
@@ -43,14 +44,14 @@ module.exports = {
4344
"unused-imports"
4445
],
4546
"rules": {
46-
"max-len": ["warn", 150],
47+
"max-len": ["warn", maxLines],
4748
"no-console": "off",
4849
"no-multiple-empty-lines": "warn",
4950
"no-trailing-spaces": "warn",
5051
"@typescript-eslint/ban-types": "off",
5152
"@typescript-eslint/comma-dangle": ["warn", "only-multiline"],
5253
"@typescript-eslint/explicit-module-boundary-types": "off",
53-
"@typescript-eslint/indent": ["warn", 4],
54+
"@typescript-eslint/indent": ["warn", 2],
5455
"@typescript-eslint/no-explicit-any": "off",
5556
"@typescript-eslint/no-inferrable-types": "off",
5657
"@typescript-eslint/no-magic-numbers": ["warn", {

Twilio/Twilio-CA-ESP-Sample/config/default.ts

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -11,47 +11,47 @@
1111

1212
export default {
1313

14-
"templates": "templates/",
15-
"library": "",
16-
"zos_src": {
17-
"local": {
18-
"folder": "zos_src/"
19-
},
20-
"dsn": {
21-
"hlq": "",
22-
"project": "",
23-
"type": ""
24-
}
14+
"templates": "templates/",
15+
"library": "",
16+
"zos_src": {
17+
"local": {
18+
"folder": "zos_src/"
2519
},
26-
"jcl": {
27-
"jobcard": {
28-
"accounting": "",
29-
"class": "",
30-
"msgclass": "",
31-
"msglevel": ""
32-
},
33-
"dsn": {
34-
"hlq": "",
35-
"project": "",
36-
"files": ["FILE1","FILE2","FILE3","FILE4","FILE5","FILE6",
37-
"FILE7","FILE8","FILE9","FILE10"]
38-
}
39-
},
40-
"esp": {
41-
"appl": "",
42-
"jobname": "",
43-
"definition": "",
44-
"definition-loader": "",
45-
"event": {
46-
"id": "",
47-
"system": "",
48-
"member": ""
49-
}
20+
"dsn": {
21+
"hlq": "",
22+
"project": "",
23+
"type": ""
24+
}
25+
},
26+
"jcl": {
27+
"jobcard": {
28+
"accounting": "",
29+
"class": "",
30+
"msgclass": "",
31+
"msglevel": ""
5032
},
51-
"twilio":{
52-
"accountSid": "",
53-
"authToken": "",
54-
"originPhone": "",
55-
"targetPhone": ""
33+
"dsn": {
34+
"hlq": "",
35+
"project": "",
36+
"files": ["FILE1","FILE2","FILE3","FILE4","FILE5","FILE6",
37+
"FILE7","FILE8","FILE9","FILE10"]
38+
}
39+
},
40+
"esp": {
41+
"appl": "",
42+
"jobname": "",
43+
"definition": "",
44+
"definition-loader": "",
45+
"event": {
46+
"id": "",
47+
"system": "",
48+
"member": ""
5649
}
50+
},
51+
"twilio":{
52+
"accountSid": "",
53+
"authToken": "",
54+
"originPhone": "",
55+
"targetPhone": ""
56+
}
5757
};

Twilio/Twilio-CA-ESP-Sample/env_scripts/lib/executeCommand.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Twilio/Twilio-CA-ESP-Sample/env_scripts/lib/load-event-definitions.js

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Twilio/Twilio-CA-ESP-Sample/env_scripts/lib/render.js

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Twilio/Twilio-CA-ESP-Sample/env_scripts/lib/twilio-notification.js

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)