docsify/.eslintrc

21 lines
429 B
Plaintext
Raw Normal View History

2016-11-20 15:56:37 +08:00
{
"extends": "xo-space/browser",
"rules": {
"semi": [2, "never"],
"no-return-assign": "off",
"no-unused-expressions": "off",
"no-new-func": "off",
"no-multi-assign": "off",
"no-mixed-operators": "off",
"max-params": "off",
"no-script-url": "off",
"camelcase": "off",
"no-warning-comments": "off"
},
"globals": {
"Docsify": true,
"$docsify": true,
"process": true
2016-11-20 15:56:37 +08:00
}
}