Skip to content

Commit 12f1586

Browse files
committed
benchmark-lsp: delete unnecessary ESLint rule configs
We are benchmarking ESLint with a custom no-unused-vars config, which is accidental. The config was copied from a project I was working on, but doesn't belong in our benchmarks. Remove the extra config.
1 parent db6bcd0 commit 12f1586

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

benchmark/benchmark-lsp/eslint/.eslintrc.json

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,5 @@
77
"parserOptions": {
88
"ecmaVersion": 2017
99
},
10-
"extends": "eslint:recommended",
11-
"rules": {
12-
"no-unused-vars": ["error", {
13-
"args": "all",
14-
"argsIgnorePattern": "^_",
15-
"caughtErrors": "all",
16-
"ignoreRestSiblings": false,
17-
"vars": "all",
18-
"varsIgnorePattern": "^_"
19-
}]
20-
}
10+
"extends": "eslint:recommended"
2111
}

0 commit comments

Comments
 (0)