-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc
39 lines (39 loc) · 1.15 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"settings": {
"import/resolver": { "meteor": {"extensions": [".js", ".jsx"]} }
},
"rules": {
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"import/extensions": "off",
"jsx-a11y/href-no-hash": [ 0 ],
"max-len": 0,
"prefer-arrow-callback": 0,
"no-underscore-dangle": 0,
"no-restricted-syntax": [2, "WithStatement"],
"no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true }],
"react/jsx-indent": [2, 4],
"react/jsx-indent-props": [2, 4],
"no-plusplus": [2, { "allowForLoopAfterthoughts": true }],
"indent": [2, 4, {
"SwitchCase": 1,
"VariableDeclarator": 1,
"outerIIFEBody": 1,
"FunctionDeclaration": {
"parameters": 2,
"body": 1
},
"FunctionExpression": {
"parameters": 2,
"body": 1
}
}]
}
}