代码拉取完成,页面将自动刷新
module.exports = {
root: true,
env: {
browser: true,
es6: true,
node: true,
jest: true,
},
plugins: ['vue'],
extends: ['plugin:vue/essential', '@vue/airbnb'],
rules: {
'max-len': 0,
camelcase: 0, // 变量可以用下划线
'no-plusplus': 0, // 禁止使用++,--
'guard-for-in': 0,
'no-extra-semi': 0, // 和prettier冲突
'import/extensions': 0, // import不需要写文件扩展名
'import/no-unresolved': 0,
'no-underscore-dangle': 0, // 无下划线
'no-restricted-syntax': 0,
'consistent-return': 'off',
'space-before-function-paren': 'off',
'no-param-reassign': 'off',
'arrow-parens': 'off',
'no-continue': 'off',
'import/prefer-default-export': 'off',
'object-shorthand': 'off',
'arrow-parens': 'off',
'vue/valid-template-root': 'off',
'func-names': 'off',
eqeqeq: 'off',
semi: ['error', 'never'],
'no-prototype-builtins': 'off',
'class-methods-use-this': 'off',
'template-curly-spacing': 'off',
'linebreak-style': [0, 'error', 'windows'],
'arrow-parens': ['error', 'as-needed'],
'comma-dangle': ['error', 'only-multiline'],
// 'no-param-reassign': ['error', { props: false }],
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'import/no-extraneous-dependencies': ['error', { devDependencies: ['script/**/*.js'] }],
indent: [
'warn',
2,
{
ignoredNodes: ['TemplateLiteral'],
SwitchCase: 1,
},
],
'object-curly-newline': [
'error',
{
ImportDeclaration: 'never',
},
],
},
parserOptions: {
parser: 'babel-eslint',
},
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。