-
Notifications
You must be signed in to change notification settings - Fork 30
/
.eslintrc
54 lines (54 loc) · 1.42 KB
/
.eslintrc
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
51
52
53
54
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"env": {
"browser": true,
"node": true,
"es6": true
},
"settings": {
"react": {
"version": "detect"
}
},
"ignorePatterns": ["node_modules", "*.js", "*.d.ts"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"overrides": [
{
"files": "./src/*",
"extends": ["plugin:react/recommended", "plugin:react-hooks/recommended"],
"rules": {
"react/prop-types": "off"
}
}
],
"parserOptions": {
"ecmaVersion": 2018,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"rules": {
"prettier/prettier": "warn",
"no-unused-vars": "off",
"no-extra-semi": "off",
"@typescript-eslint/no-extra-semi": "off",
"react/prop-types": "off",
"import/no-unresolved": "off",
"@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-use-before-define": "warn",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-inferrable-types": [
"warn",
{
"ignoreProperties": true,
"ignoreParameters": true
}
]
}
}