forked from freeCodeCamp/meeting-for-good
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
38 lines (38 loc) · 759 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
{
"env": {
"browser": true,
"node": true,
"mocha":true
},
"extends": "airbnb",
"rules": {
"no-param-reassign": 0,
"no-console": 0,
"strict": [0, "global"],
"react/prefer-stateless-function": 2,
"no-multi-spaces": ["error", {
"exceptions": {
"VariableDeclarator": true
}
}],
"no-shadow": 0,
"no-underscore-dangle": 0,
"arrow-body-style": 2,
"consistent-return": 0,
"no-nested-ternary": 0,
"max-len": 2,
"allowForLoopAfterthoughts": 0,
"react/jsx-filename-extension": [1, {
"extensions": [".js", ".jsx"]
}],
},
"plugins": [
"react",
],
"globals": {
"$": true,
"Materialize": true,
"wNumb": true,
},
"parser": "babel-eslint",
}