Skip to content

Commit 56660b1

Browse files
committed
Enable eslint-plugin-github in test folder
1 parent b45c67f commit 56660b1

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

extensions/ql-vscode/test/.eslintrc.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,25 @@ module.exports = {
55
parserOptions: {
66
project: "./test/tsconfig.json",
77
},
8+
plugins: [
9+
"github",
10+
],
11+
extends: [
12+
"plugin:github/react",
13+
"plugin:github/recommended",
14+
"plugin:github/typescript",
15+
],
16+
rules: {
17+
"@typescript-eslint/no-explicit-any": "off",
18+
"@typescript-eslint/no-shadow": "off",
19+
"camelcase": "off",
20+
"filenames/match-regex": "off",
21+
"i18n-text/no-en": "off",
22+
"import/no-namespace": "off",
23+
"import/no-unresolved": "off",
24+
"no-console": "off",
25+
"no-shadow": "off",
26+
"no-undef": "off",
27+
"github/array-foreach": "off",
28+
}
829
};

0 commit comments

Comments
 (0)