forked from react-grid-layout/react-resizable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
38 lines (38 loc) · 732 Bytes
/
.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
{
"root": true,
"parser": "@babel/eslint-parser",
"plugins": [
"react"
],
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"strict": 0,
"quotes": [0, "single"],
"curly": [1, "multi-line"],
"camelcase": 0,
"comma-dangle": 0,
"dot-notation": 0,
"no-console": 0,
"no-use-before-define": [1, "nofunc"],
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"new-cap": 0,
"react/jsx-uses-vars": 1,
"semi": [1, "always"]
},
"env": {
"browser": true,
"node": true,
"jest": true
},
"globals": {
// For Flow
"ReactElement": false,
"ReactClass": false,
"SyntheticEvent": false,
"ClientRect": false
}
}