Skip to content

Commit f68fd66

Browse files
committed
correct licenses
Signed-off-by: Andrew Twydell <[email protected]>
1 parent 5515d19 commit f68fd66

13 files changed

+50
-46
lines changed

.eslintrc.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ rules:
3535
"@typescript-eslint/explicit-member-accessibility": off
3636
"@typescript-eslint/explicit-function-return-type": off
3737
"@typescript-eslint/restrict-template-expressions": off
38-
indent": off
39-
"@typescript-eslint/indent":
40-
- error
41-
- 2
38+
"@typescript-eslint/indent": off
4239

4340
# There are several errors falling under these rules; resolve
4441
"@typescript-eslint/no-for-in-array": off

.vscode/settings.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,14 @@
1010
"search.exclude": {
1111
"out": true // set this to false to include "out" folder in search results
1212
},
13-
1413
// Make sure people do not accidentally forget to sign
1514
"git.alwaysSignOff": true,
16-
1715
"typescript.tsdk": "node_modules/typescript/lib",
1816
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
1917
"typescript.tsc.autoDetect": "off",
2018
// Standardize on the Prettier formatter
2119
"editor.defaultFormatter": "esbenp.prettier-vscode",
2220
// Enforce prettier on save
2321
"editor.formatOnSave": true,
24-
"npm.packageManager": "npm",
25-
"eslint.packageManager": "npm"
26-
}
22+
"npm.packageManager": "npm"
23+
}

packages/cli/__mocks__/@zowe/cli-test-utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/**
22
* This program and the accompanying materials are made available under the terms of the
33
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
44
* https://www.eclipse.org/legal/epl-v20.html

packages/cli/system.jest_config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
*
1010
*/
1111

12-
import { createConfig, ConfigGlobals } from '../../common.jest_config';
12+
import { ConfigGlobals, createConfig } from "../../common.jest_config";
1313
export default createConfig("system", "Zowe CICS CLI System Tests") as ConfigGlobals;

packages/cli/unit.jest_config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
*
1010
*/
1111

12-
import { createConfig, ConfigGlobals } from '../../common.jest_config';
12+
import { ConfigGlobals, createConfig } from "../../common.jest_config";
1313
export default createConfig("unit", "Zowe CICS CLI Unit Tests") as ConfigGlobals;

packages/sdk/system.jest_config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
*
1010
*/
1111

12-
import { createConfig, ConfigGlobals } from '../../common.jest_config';
12+
import { ConfigGlobals, createConfig } from "../../common.jest_config";
1313
export default createConfig("system", "Zowe CICS SDK System Tests") as ConfigGlobals;

packages/sdk/unit.jest_config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
*
1010
*/
1111

12-
import { createConfig, ConfigGlobals } from '../../common.jest_config';
12+
import { ConfigGlobals, createConfig } from "../../common.jest_config";
1313
export default createConfig("unit", "Zowe CICS SDK Unit Tests") as ConfigGlobals;

packages/vsce/__tests__/__unit__/utils/iconUtils.unit.test.ts

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/**
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright Contributors to the Zowe Project.
9+
*
10+
*/
11+
112
import { getFolderIcon, getIconByStatus, getIconFilePathFromName, getIconRootName } from "../../../src/utils/iconUtils";
213

314
const iconPath = {

packages/vsce/scripts/getSecretsPrebuilds.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
/*
2-
* This program and the accompanying materials are made available under the terms of the
3-
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4-
* https://www.eclipse.org/legal/epl-v20.html
5-
*
6-
* SPDX-License-Identifier: EPL-2.0
7-
*
8-
* Copyright Contributors to the Zowe Project.
9-
*
10-
*/
1+
/**
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright Contributors to the Zowe Project.
9+
*
10+
*/
1111

1212
const fsE = require("fs-extra");
1313
const path = require("path");

packages/vsce/unit.jest_config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
*
1010
*/
1111

12-
import { createConfig, ConfigGlobals } from '../../common.jest_config';
12+
import { ConfigGlobals, createConfig } from "../../common.jest_config";
1313
export default createConfig("unit", "Zowe CICS VSCE Unit Tests") as ConfigGlobals;

prettier.config.js

-1
This file was deleted.

scripts/bundleTgz.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
/*
2-
* This program and the accompanying materials are made available under the terms of the
3-
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4-
* https://www.eclipse.org/legal/epl-v20.html
5-
*
6-
* SPDX-License-Identifier: EPL-2.0
7-
*
8-
* Copyright Contributors to the Zowe Project.
9-
*
10-
*/
1+
/**
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright Contributors to the Zowe Project.
9+
*
10+
*/
1111

1212
const childProcess = require("child_process");
1313
const fsE = require("fs-extra");

scripts/rewriteShrinkwrap.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
/*
2-
* This program and the accompanying materials are made available under the terms of the
3-
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4-
* https://www.eclipse.org/legal/epl-v20.html
5-
*
6-
* SPDX-License-Identifier: EPL-2.0
7-
*
8-
* Copyright Contributors to the Zowe Project.
9-
*
10-
*/
1+
/**
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright Contributors to the Zowe Project.
9+
*
10+
*/
1111

1212
const fs = require("fs");
1313
const cp = require("child_process");

0 commit comments

Comments
 (0)