forked from Meteor-Community-Packages/meteor-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
35 lines (35 loc) · 845 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"mocha": true,
"node": true
},
"globals": {
"describe": false,
"expect": false,
"Meteor": false,
"window": false,
"document": false
},
"rules": {
"arrow-body-style": 0,
"consistent-return": 1,
"import/extensions": 0,
"import/no-unresolved": [2, { "ignore": ["^meteor/"] }],
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"max-len": 0,
"new-cap": 0,
"newline-per-chained-call": 0,
"no-console": 0,
"no-param-reassign": 0,
"no-unused-expressions": 0,
"no-use-before-define": [2, "nofunc"],
"no-plusplus": 0,
"react/no-did-update-set-state": 0,
"react/no-multi-comp": 0,
"react/prefer-stateless-function": 0,
"space-before-function-paren": 0
}
}