-
Notifications
You must be signed in to change notification settings - Fork 90
/
.eslintrc
63 lines (63 loc) · 1.28 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
{
"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",
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
}