.eslintrc
434 Bytes
{
"extends": "standard",
"rules": {
"semi": [0],
"multiLine": {
"beforeColon": true,
"afterColon": true,
"align": "colon"
},
"no-unused-vars": [2, {
// 允许声明未使用变量
"vars": "local",
// 参数不检查
"args": "none"
}],
"sort-vars": 0,
"no-multiple-empty-lines": [0, {"max": 100}],
"spaced-comment": 0,
"curly": ["warn", "all"]
}
}