Skip to content

Commit 0b9ba3c

Browse files
committed
Start by turning off all rules that have found offences
In the next commits we'll turn these rules on, one-by-one, and then autofix the offenses. At the end we'll be left with the rules that require manual attention.
1 parent f539ba3 commit 0b9ba3c

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

extensions/ql-vscode/.eslintrc.js

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,46 @@ module.exports = {
3232
ignoreRestSiblings: false,
3333
},
3434
],
35+
"@typescript-eslint/array-type": "off",
3536
"@typescript-eslint/explicit-function-return-type": "off",
3637
"@typescript-eslint/explicit-module-boundary-types": "off",
3738
"@typescript-eslint/no-non-null-assertion": "off",
3839
"@typescript-eslint/no-explicit-any": "off",
3940
"@typescript-eslint/no-floating-promises": [ "error", { ignoreVoid: true } ],
41+
"@typescript-eslint/no-invalid-this": "off",
42+
"@typescript-eslint/no-shadow": "off",
4043
"prefer-const": ["warn", { destructuring: "all" }],
4144
"@typescript-eslint/no-throw-literal": "error",
4245
"no-useless-escape": 0,
46+
"camelcase": "off",
47+
"eqeqeq": "off",
48+
"escompat/no-regexp-lookbehind": "off",
49+
"eslint-comments/no-unused-disable": "off",
50+
"filenames/match-regex": "off",
51+
"filenames/match-regexp": "off",
52+
"func-style": "off",
53+
"i18n-text/no-en": "off",
54+
"import/named": "off",
55+
"import/no-dynamic-require": "off",
56+
"import/no-dynamic-required": "off",
57+
"import/no-anonymous-default-export": "off",
58+
"import/no-commonjs": "off",
59+
"import/no-duplicates": "off",
60+
"import/no-mutable-exports": "off",
61+
"import/no-namespace": "off",
62+
"import/no-unresolved": "off",
63+
"import/no-webpack-loader-syntax": "off",
64+
"jsx-a11y/anchor-is-valid": "off",
65+
"jsx-a11y/no-noninteractive-element-interactions": "off",
66+
"jsx-a11y/no-static-element-interactions": "off",
67+
"jsx-a11y/click-events-have-key-events": "off",
68+
"no-invalid-this": "off",
69+
"no-fallthrough": "off",
70+
"no-console": "off",
71+
"no-shadow": "off",
72+
"object-shorthand": "off",
73+
"prefer-template": "off",
74+
"github/array-foreach": "off",
75+
"github/no-then": "off",
4376
},
4477
};

0 commit comments

Comments
 (0)