Skip to content

Commit aa4c0c2

Browse files
committed
work around
1 parent 40e3c26 commit aa4c0c2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ export default [
4646
"@typescript-eslint/no-shadow": "off",
4747
"no-warning-comments": "warn",
4848
"jsdoc/require-jsdoc": "off",
49+
// FIXME: Turning off this rule because it causes `TypeError: aVer.compare is not a function` error.
50+
// Most likely the root cause needs to be fixed on the rule side.
51+
"node-dependencies/compat-engines": "off",
4952
complexity: "off",
5053

5154
"prettier/prettier": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"cover": "c8 --reporter=lcov pnpm run test",
3939
"debug": "pnpm run mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
4040
"eslint-fix": "pnpm run lint --fix",
41-
"lint": "eslint .",
41+
"lint": "eslint . --concurrency auto",
4242
"mocha": "pnpm run ts ./node_modules/mocha/bin/mocha.js",
4343
"prebuild": "pnpm run clean",
4444
"prerelease": "pnpm run clean && pnpm run build",

0 commit comments

Comments
 (0)