-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
30 lines (30 loc) · 858 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
{
"extends": "airbnb",
"globals": {
"Package": true,
"Npm": true,
"Tinytest": true
},
"rules": {
"complexity": ["error", 5],
"indent": ["error", 4],
"import/prefer-default-export": 0,
"max-len": ["error", 120],
"no-param-reassign": 0,
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"no-underscore-dangle": 0,
"no-use-before-define": ["error", { "functions": false }]
},
"settings": {
"import/core-modules": [
"meteor/check",
"meteor/meteor",
"meteor/mongo",
"meteor/cultofcoders:mocha",
"meteor/underscore",
"meteor/practicalmeteor:mocha",
"meteor/practicalmeteor:chai",
"meteor/reywood:publish-composite"
]
}
}