We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41b5ad1 commit 94037a4Copy full SHA for 94037a4
scripts/lint-script.ts
@@ -1,12 +1,11 @@
1
import { eslintFix } from "./../src/command/eslint-fix";
2
-import { execCommand, loggerWarring } from "../src/shared";
3
import { prettierFormat } from "../src/command/prettier-format";
+import { loggerWarring } from "../src/shared";
4
5
async function lint() {
6
try {
7
await prettierFormat(["./src/", "./scripts/"]);
8
await eslintFix(["./src/", "./scripts/"]);
9
- await execCommand("git", ["add", "."]);
10
} catch (error) {
11
loggerWarring(error);
12
}
0 commit comments