forked from hoaiduyit/react-pannellum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
32 lines (32 loc) · 730 Bytes
/
.eslintrc
File metadata and controls
32 lines (32 loc) · 730 Bytes
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
{
"root": true,
"parser": "babel-eslint",
"env": {
"es6": true,
"jest": true
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"plugins": ["react"],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"import/prefer-default-export": 0,
"import/extensions": 0,
"object-curly-newline": 0,
"radix": 0,
"no-console": 0,
"no-undef": 0,
"no-underscore-dangle": 0,
"no-plusplus": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"no-use-before-define": "off",
"no-shadow": "off",
"no-unused-vars": 1,
"no-shadow-restricted-names": 0,
"no-prototype-builtins": 0,
"react/no-children-prop": 0
}
}