-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
50 lines (50 loc) · 1.47 KB
/
.eslintrc.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "react-hooks"],
"extends": [
"eslint:recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"prettier"
],
"parserOptions": {
"sourceType": "module"
},
"ignorePatterns": ["**/core-js/*", "**/node_modules/*"],
"rules": {
"indent": "off",
"no-console": "off",
"arrow-parens": "off",
"no-empty-pattern": "off",
"curly": ["error", "multi-line"],
"import/no-extraneous-dependencies": 0,
"require-await": 0,
"global-require": 0,
"import/no-unresolved": 0,
"import/newline-after-import": 0,
"no-underscore-dangle": 0,
"quotes": "off",
"semi": "off",
"no-empty": "off",
"no-undef": "off",
"no-prototype-builtins": "off",
"no-useless-escape": "off",
"no-case-declarations": "off",
"no-control-regex": "off",
"no-fallthrough": "off",
"no-useless-catch": "off",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"react-hooks/exhaustive-deps": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-var-requires": "off"
}
}