From 228b68b74c2acb0a1a1db885aa41bf73571e500f Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 1 Oct 2024 18:08:48 -0400 Subject: [PATCH] Rename lintfix to lint:fix --- package.json | 2 +- packages/@glimmer/tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b1ab59455..3fbc16887 100644 --- a/package.json +++ b/package.json @@ -24,9 +24,9 @@ "link:all": "esyes ./bin/link-all.mts", "lint": "npm-run-all lint:*", "lint:files": "turbo lint", + "lint:fix": "pnpm turbo test:lint -- --fix && prettier -w .", "lint:format": "prettier -c .", "lint:types": "tsc -b", - "lintfix": "pnpm turbo test:lint -- --fix && prettier -w .", "start": "vite", "test": "node bin/run-tests.mjs", "test:babel-plugins": "yarn workspace @glimmer/vm-babel-plugins test", diff --git a/packages/@glimmer/tsconfig.json b/packages/@glimmer/tsconfig.json index e0860c456..d478d6443 100644 --- a/packages/@glimmer/tsconfig.json +++ b/packages/@glimmer/tsconfig.json @@ -28,7 +28,7 @@ "noPropertyAccessFromIndexSignature": true, "noUncheckedIndexedAccess": true, - "types": ["qunit", "node", "vite/client"], + "types": ["qunit", "node", "vite/client"] }, "include": ["./**/*", "./**/*.d.ts"], "exclude": ["*/dist", "*/node_modules", "**/fixtures", "*/test"]