-
Notifications
You must be signed in to change notification settings - Fork 33
/
.eslintrc
48 lines (48 loc) · 1.08 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
{
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:react/jsx-runtime", "plugin:react-hooks/recommended", "standard", "plugin:storybook/recommended"],
"rules": {
"dot-notation": "off",
"indent": "off",
"multiline-ternary": "off",
"no-console": "off",
"no-lone-blocks": "off",
"no-mixed-spaces-and-tabs": "off",
"no-tabs": "off",
"no-useless-return": "off",
"no-var": "off",
"object-curly-newline": "off",
"object-shorthand": "off",
"prefer-const": "off",
"quotes": "off",
"react/jsx-indent-props": [2, 2],
"react/prop-types": "off",
"semi": [2, "always"],
"space-before-function-paren": "off"
},
"env": {
"browser": true,
"es2021": true,
"node": true
},
"globals": {
"AFRAME": true,
"STREET": true,
"THREE": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react"
],
"settings": {
"react": {
"version": "detect"
}
}
}