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 9997053290.

* chore: Remove --concurrency
This commit is contained in:
Alexander Brown
2025-09-11 17:07:19 -07:00
committed by GitHub
parent 68845ce33a
commit ef7575b8d6
2 changed files with 4 additions and 8 deletions

View File

@@ -33,4 +33,3 @@ DISABLE_VUE_PLUGINS=false
# Algolia credentials required for developing with the new custom node manager. # Algolia credentials required for developing with the new custom node manager.
ALGOLIA_APP_ID=4E0RO38HS8 ALGOLIA_APP_ID=4E0RO38HS8
ALGOLIA_API_KEY=684d998c36b67a9a9fce8fc2d8860579 ALGOLIA_API_KEY=684d998c36b67a9a9fce8fc2d8860579

View File

@@ -25,10 +25,10 @@
"preinstall": "npx only-allow pnpm", "preinstall": "npx only-allow pnpm",
"prepare": "husky || true && git config blame.ignoreRevsFile .git-blame-ignore-revs || true", "prepare": "husky || true && git config blame.ignoreRevsFile .git-blame-ignore-revs || true",
"preview": "nx preview", "preview": "nx preview",
"lint": "eslint src --cache --concurrency=$npm_package_config_eslint_concurrency", "lint": "eslint src --cache",
"lint:fix": "eslint src --fix --cache --concurrency=$npm_package_config_eslint_concurrency", "lint:fix": "eslint src --cache --fix",
"lint:no-cache": "eslint src --concurrency=$npm_package_config_eslint_concurrency", "lint:no-cache": "eslint src",
"lint:fix:no-cache": "eslint src --fix --concurrency=$npm_package_config_eslint_concurrency", "lint:fix:no-cache": "eslint src --fix",
"knip": "knip --cache", "knip": "knip --cache",
"knip:no-cache": "knip", "knip:no-cache": "knip",
"locale": "lobe-i18n locale", "locale": "lobe-i18n locale",
@@ -37,9 +37,6 @@
"storybook": "nx storybook -p 6006", "storybook": "nx storybook -p 6006",
"build-storybook": "storybook build" "build-storybook": "storybook build"
}, },
"config": {
"eslint_concurrency": "4"
},
"devDependencies": { "devDependencies": {
"@eslint/js": "^9.8.0", "@eslint/js": "^9.8.0",
"@iconify-json/lucide": "^1.2.66", "@iconify-json/lucide": "^1.2.66",