forked from CoinAlpha/fund-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
31 lines (31 loc) · 862 Bytes
/
.eslintrc.js
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
module.exports = {
"extends": "airbnb",
"rules": {
"comma-dangle" : ["error", {
"functions": "ignore"
}],
"no-console": "off",
"no-multi-spaces": ["error", { ignoreEOLComments: true }],
"no-return-assign": "off",
"no-unused-vars": ["off", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }],
"max-len": ["error", {"code": 150}],
"prefer-destructuring": ["off", {
"array": true,
"object": true
}]
},
"globals": {
"artifacts" : true,
"assert" : true,
"before" : true,
"beforeEach" : true,
"contract": true,
"describe": true,
"dataFeed": true,
"getBal": true,
"it" : true,
"radix": true,
"web3" : true,
"xit" : true,
}
};