Skip to content

Commit

Permalink
Revert "solve ftp issue with lint error"
Browse files Browse the repository at this point in the history
This reverts commit b297ab6.

Signed-off-by: Rudy Flores <[email protected]>
  • Loading branch information
rudyflores committed Sep 20, 2023
1 parent b297ab6 commit d3225ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/zowe-explorer-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"build": "pnpm check-cli && pnpm clean && pnpm madge && tsc -p ./ && pnpm license",
"test:unit": "jest \".*__tests__.*\\.unit\\.test\\.ts\" --coverage",
"test": "pnpm test:unit",
"lint": "concurrently -n \"_eslint_,prettier\" \"eslint .\" \"prettier --write . && prettier --check .\"",
"lint": "concurrently -n \"_eslint_,prettier\" \"eslint .\" \"prettier --check .\"",
"lint:html": "eslint . --format html > results/eslint.html",
"madge": "madge -c --no-color --no-spinner --exclude __mocks__ --extensions js,ts src/",
"pretty": "prettier --write .",
Expand Down
2 changes: 1 addition & 1 deletion packages/zowe-explorer-ftp-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"build": "pnpm clean && pnpm madge && pnpm license && webpack --mode development",
"test:unit": "jest \".*__tests__.*\\.unit\\.test\\.ts\" --coverage",
"test": "pnpm test:unit",
"lint": "concurrently -n \"_eslint_,prettier\" \"eslint .\" \"prettier --write . && prettier --check .\"",
"lint": "concurrently -n \"_eslint_,prettier\" \"eslint .\" \"prettier --check .\"",
"lint:html": "eslint . --format html > results/eslint.html",
"madge": "madge -c --no-color --no-spinner --exclude __mocks__ --extensions js,ts src/",
"pretty": "prettier --write .",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ import * as globals from "./globals";

export class ZoweFtpExtensionError extends Error {
public constructor(message: string) {
super(`${String(globals.LOGGER.getExtensionName())}: ${String(message)}`);
super(globals.LOGGER.getExtensionName() + ": " + message);
}
}

0 comments on commit d3225ca

Please sign in to comment.