From d2bac9d8d157533681672004a8d2a490362682b4 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Mon, 8 Jan 2024 17:23:06 +0100 Subject: [PATCH] chore: Adjust cli package to use JS for linter --- packages/cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 6ad2b62d..ce2ebd87 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -26,7 +26,7 @@ "scripts": { "build": "shx rm -rf dist && tsc -b", "build:watch": "nodemon --watch 'src/**/*.ts' --exec 'shx rm -rf dist && tsc -b' --ext 'ts'", - "lint": "eslint . --ext .ts --ignore-path ../../.eslintignore", + "lint": "eslint . --ext .js --ignore-path ../../.eslintignore", "postpack": "shx rm -f oclif.manifest.json", "posttest": "yarn lint", "prepack": "yarn build && oclif manifest && oclif readme",