Skip to content

Commit 2c5ca6f

Browse files
DrJKLsnomiao
authored andcommitted
Revert "chore(lint): make ESLint concurrency configurable via pnpm config" (#5499)
* Revert "chore(lint): make ESLint concurrency configurable via pnpm config (#5…" This reverts commit 9997053. * chore: Remove --concurrency
1 parent 0073310 commit 2c5ca6f

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.env_example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,3 @@ DISABLE_VUE_PLUGINS=false
3333
# Algolia credentials required for developing with the new custom node manager.
3434
ALGOLIA_APP_ID=4E0RO38HS8
3535
ALGOLIA_API_KEY=684d998c36b67a9a9fce8fc2d8860579
36-

package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
"preinstall": "npx only-allow pnpm",
2626
"prepare": "husky || true && git config blame.ignoreRevsFile .git-blame-ignore-revs || true",
2727
"preview": "nx preview",
28-
"lint": "eslint src --cache --concurrency=$npm_package_config_eslint_concurrency",
29-
"lint:fix": "eslint src --fix --cache --concurrency=$npm_package_config_eslint_concurrency",
30-
"lint:no-cache": "eslint src --concurrency=$npm_package_config_eslint_concurrency",
31-
"lint:fix:no-cache": "eslint src --fix --concurrency=$npm_package_config_eslint_concurrency",
28+
"lint": "eslint src --cache",
29+
"lint:fix": "eslint src --cache --fix",
30+
"lint:no-cache": "eslint src",
31+
"lint:fix:no-cache": "eslint src --fix",
3232
"knip": "knip --cache",
3333
"knip:no-cache": "knip",
3434
"locale": "lobe-i18n locale",
@@ -37,9 +37,6 @@
3737
"storybook": "nx storybook -p 6006",
3838
"build-storybook": "storybook build"
3939
},
40-
"config": {
41-
"eslint_concurrency": "4"
42-
},
4340
"devDependencies": {
4441
"@babel/core": "^7.28.3",
4542
"@babel/preset-typescript": "^7.27.1",

0 commit comments

Comments
 (0)