代码拉取完成,页面将自动刷新
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
"ecmaVersion": 6,
parser: 'babel-eslint',
"ecmaFeatures": {
"jsx": true
}
},
env: {
browser: true,
node: true,
amd: true
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
'plugin:vue/essential',
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
'standard'
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
// (https://cn.eslint.org/docs/rules/)
rules: {
// allow async-await
'generator-star-spacing': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
"indent": ["error", 4],
"comma-dangle": ["error", "always"],
"array-bracket-spacing": ["error", "always", { "singleValue": true, "objectsInArrays": true, "arraysInArrays": true }],
"semi" : ["error", "always"],
"no-multiple-empty-lines": ["error", { "max": 3, "maxEOF": 1 }],
"no-trailing-spaces": ["error", { "skipBlankLines": true }],
'standard/object-curly-even-spacing': 0
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。