bk
Version:
Download bilibili videos;B站视频下载;支持新版BV号;支持分P及一键多P下载;支持多质量选择;
33 lines (32 loc) • 623 B
Plain Text
{
"parserOptions":
{
"sourceType": "module",
"ecmaVersion": 8
},
"rules": {
"no-var": [2],
"object-shorthand": [2, "always", {
ignoreConstructors: false,
avoidQuotes: true,
}],
"prefer-const": [2, {
destructuring: "any",
ignoreReadBeforeAssign: true,
}],
"indent": [1, 2],
"quotes": [2, "single"],
"linebreak-style": [2, "unix"],
"semi": [2, "always"],
"no-unused-vars": [1],
"no-console": [0]
},
"env": {
"node": true,
"browser": true,
"mocha": true,
"jquery": true,
"es6": true
},
"extends": "eslint:recommended"
}