forked from Kiho/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
39 lines (39 loc) · 885 Bytes
/
.eslintrc.json
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
{
"parser": "babel-eslint",
"extends": ["airbnb-base"],
"plugins": [
"react"
],
"globals": {
"window": true,
"document": true,
"navigator": true
},
"rules": {
"max-len": [1, 180, 2, {"ignoreComments": true}],
"semi": [2, "always"],
"comma-dangle": "warn",
"camelcase": "warn",
"prefer-destructuring": "warn",
"no-param-reassign": "warn",
"linebreak-style": 0,
"operator-linebreak": "off",
"no-underscore-dangle": "off",
"class-methods-use-this": "off",
"arrow-parens": "off",
"indent": "off",
"no-plusplus": "off",
"no-return-assign": "off",
"object-curly-newline": "off",
"no-prototype-builtins": "warn",
"react/jsx-uses-vars": [2],
"react/jsx-uses-react": 1
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx"]
}
}
}
}