Skip to content

Commit

Permalink
Remove lint scripts as eslint now lints globally
Browse files Browse the repository at this point in the history
  • Loading branch information
sethidden committed Oct 3, 2024
1 parent fca2118 commit f237cb0
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 8 deletions.
1 change: 0 additions & 1 deletion actions/check-licenses/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
1 change: 0 additions & 1 deletion actions/circular-dependencies/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 0 additions & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
1 change: 0 additions & 1 deletion packages/middleware/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion packages/multistore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
1 change: 0 additions & 1 deletion packages/sdk-axios-request-sender/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"scripts": {
"build": "rimraf lib && rollup -c",
"test": "jest --coverage",
"lint": "eslint . --ext .ts,.js",
"prepublish": "yarn build"
},
"devDependencies": {
Expand Down
1 change: 0 additions & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f237cb0

Please sign in to comment.