{
  "extends": "standard",
  "plugins": ["html"],
  "parser": "vue-eslint-parser",
  "parserOptions": {
    "parser": "babel-eslint",
    "sourceType": "module"
  },
  "rules": {
    "no-new": "off",
    "no-debugger": "off",
    "space-before-function-paren": "off",
    "semi": "off", // 语句末尾分号检测
    "eol-last": "off", // 文件末尾必须有空行(以换行符结束)
    "prefer-promise-reject-errors": "off" // promise reject必须是error对象
  },
  "globals": {
    "CKEDITOR": false,
    "Base64": false,
    "md5": false,
    "$": false,
    "window": false,
    "webConf": false,
    "wx": false,
    "WeixinJSBridge": false
  }
}
