-
Notifications
You must be signed in to change notification settings - Fork 91
/
.eslintrc
76 lines (76 loc) · 1.65 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:prettier/recommended",
"alloy",
"alloy/react",
"alloy/typescript",
"prettier"
],
"globals": {
"React": true,
"JSX": true,
"jsdom": true,
"JsMediaSDK_Instance": true
},
"plugins": ["@typescript-eslint", "react-hooks"],
"env": {
"browser": true,
"es6": true,
"node": true
},
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
},
"parserOptions": {
"ecmaVersion": 2015,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"react/prop-types": "off",
"no-console": 1,
"prefer-destructuring": 1,
"default-case": 2,
"eqeqeq": 2,
"no-alert": 2,
"no-unused-vars": 0,
"no-unreachable": 2,
"no-duplicate-imports": 2,
"max-params": ["error", 8],
"react/display-name": 0,
"react-hooks/rules-of-hooks": 2,
"react-hooks/exhaustive-deps": 1,
"react/no-unescaped-entities": 1,
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"complexity": "off",
"prefer-object-has-own": "off",
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrors": "none",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true,
},
],
}
}