-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
36 lines (36 loc) · 809 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
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"allowImportExportEverywhere": false,
"codeFrame": false,
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": ["react"],
"rules": {
"quotes":"off",
"indent":"off",
"key-spacing":[2, { "beforeColon": false, "afterColon": true }],
"no-else-return":"off",
"consistent-return":"off",
"max-len":[1,200],
"prefer-const":"off",
"max-length":"off",
"react/jsx-indent":"off",
"no-dupe-args":"error",
"no-console":"off",
"semi":"off",
"arrow-parens": "off",
"no-unused-vars":"off"
}
}