From f237cb03f8c1c5119785ffa37719f3d3b572d936 Mon Sep 17 00:00:00 2001 From: Artur Tagisow Date: Thu, 3 Oct 2024 10:53:55 +0200 Subject: [PATCH] Remove lint scripts as eslint now lints globally --- actions/check-licenses/package.json | 1 - actions/circular-dependencies/package.json | 1 - package.json | 2 +- packages/cli/package.json | 1 - packages/middleware/package.json | 1 - packages/multistore/package.json | 1 - packages/sdk-axios-request-sender/package.json | 1 - packages/sdk/package.json | 1 - 8 files changed, 1 insertion(+), 8 deletions(-) diff --git a/actions/check-licenses/package.json b/actions/check-licenses/package.json index 55b7783bbf..7081e0a038 100644 --- a/actions/check-licenses/package.json +++ b/actions/check-licenses/package.json @@ -15,7 +15,6 @@ "format": "prettier --write .", "package": "ncc build --license licenses.txt --no-source-map-register", "compile": "tsc", - "lint": "eslint --fix .", "build": "yarn compile && yarn package" }, "keywords": [ diff --git a/actions/circular-dependencies/package.json b/actions/circular-dependencies/package.json index 88582554b9..42a73d1bd6 100644 --- a/actions/circular-dependencies/package.json +++ b/actions/circular-dependencies/package.json @@ -15,7 +15,6 @@ "format": "prettier --write .", "package": "ncc build --license licenses.txt --no-source-map-register", "compile": "tsc", - "lint": "eslint --fix .", "build": "yarn compile && yarn package" }, "keywords": [ diff --git a/package.json b/package.json index 2c37ee53a8..4d8b7362ec 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "test": "turbo run test", "test:unit": "turbo run test:unit", "test:integration": "turbo run test:integration", - "lint": "turbo run lint", + "lint": "eslint", "ci": "turbo run build test:unit test:integration lint", "changesets:version": "yarn changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install && yarn prepare:docs", "changesets:publish": "yarn build && yarn changeset publish", diff --git a/packages/cli/package.json b/packages/cli/package.json index 7f062dc653..01ec854ebb 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -65,7 +65,6 @@ "test": "yarn test:unit && yarn test:integration", "test:unit": "jest -c jest.config.ts --coverage", "test:integration": "echo 'No test step created for this package'", - "lint": "eslint . --ext .ts,.js", "prepublish": "yarn build" }, "engines": { diff --git a/packages/middleware/package.json b/packages/middleware/package.json index f4c1d8b539..3a472f489b 100644 --- a/packages/middleware/package.json +++ b/packages/middleware/package.json @@ -14,7 +14,6 @@ "test": "yarn test:unit && yarn test:integration", "test:unit": "jest -c jest.config.ts --coverage", "test:integration": "jest ./integration -c ./jest.config.ts --runInBand", - "lint": "eslint . --ext .ts,.js", "prepublishOnly": "yarn build", "changesets:version": "yarn changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install", "changesets:publish": "yarn build && yarn changeset publish" diff --git a/packages/multistore/package.json b/packages/multistore/package.json index 3edb778cff..e1e5683b87 100644 --- a/packages/multistore/package.json +++ b/packages/multistore/package.json @@ -15,7 +15,6 @@ "scripts": { "build": "rimraf lib && rollup -c", "dev": "rimraf lib && rollup -c -w", - "lint": "eslint . --ext .ts", "test": "yarn jest", "prepublishOnly": "yarn build" }, diff --git a/packages/sdk-axios-request-sender/package.json b/packages/sdk-axios-request-sender/package.json index 4b706d043a..5523819310 100644 --- a/packages/sdk-axios-request-sender/package.json +++ b/packages/sdk-axios-request-sender/package.json @@ -11,7 +11,6 @@ "scripts": { "build": "rimraf lib && rollup -c", "test": "jest --coverage", - "lint": "eslint . --ext .ts,.js", "prepublish": "yarn build" }, "devDependencies": { diff --git a/packages/sdk/package.json b/packages/sdk/package.json index f4a90452a1..19e058fb01 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -11,7 +11,6 @@ "scripts": { "build": "rimraf lib && rollup -c", "dev": "rimraf lib && rollup -c -w", - "lint": "eslint . --ext .ts", "test": "yarn test:unit && yarn test:integration", "test:unit": "jest ./src/__tests__/unit -c ./jest.config.unit.ts --coverage", "test:integration": "jest ./src/__tests__/integration -c ./jest.config.integration.ts --runInBand --coverage",