加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.72 KB
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2022-06-20 01:18 . 条形码
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',
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化