We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b45c67f commit 56660b1Copy full SHA for 56660b1
1 file changed
extensions/ql-vscode/test/.eslintrc.js
@@ -5,4 +5,25 @@ module.exports = {
5
parserOptions: {
6
project: "./test/tsconfig.json",
7
},
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
+ }
29
};
0 commit comments