generated from Himenon/template-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
31 lines (30 loc) · 1.08 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
sourceType: "module",
},
extends: ["plugin:@typescript-eslint/recommended", "plugin:import/typescript"],
rules: {
"@typescript-eslint/no-floating-promises": 2,
"@typescript-eslint/triple-slash-reference": [2, { path: "never", types: "never", lib: "never" }],
"@typescript-eslint/no-unnecessary-qualifier": 2,
"@typescript-eslint/unified-signatures": 2,
"no-undef": 0,
"no-redeclare": 0,
"import/export": 0,
"import/named": 0,
"import/no-unresolved": 0,
"import/namespace": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/explicit-member-accessibility": 0,
"@typescript-eslint/no-namespace": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/camelcase": 0,
"react/prop-types": 0,
"@typescript-eslint/no-unnecessary-qualifier": 0,
},
};