node-taobao-topclient
Version:
taobao topsdk for node.js(support es6/7,promise,async/await)
23 lines (22 loc) • 585 B
Plain Text
{
"extends": "airbnb-base",
"env": {
"node": true,
"mocha": true
},
"parser": "babel-eslint",
"plugins": ["import"],
"rules": {
"comma-dangle": ["warn", "only-multiline"],
"indent": [2, 2, {"SwitchCase": 1}],
"no-console": 0,
"object-shorthand": [2, "always", { "avoidQuotes": false }],
"max-len": [2, 120],
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"no-restricted-syntax": 0,
"class-methods-use-this": 0,
},
"globals": {
"expect": true
}
}