加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
zhy6599 提交于 2020-12-24 22:12 . init 1.0
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module', // Allows for the use of imports
},
env: {
browser: true,
},
extends: [
'plugin:vue/essential',
'airbnb-base',
],
plugins: [
'vue',
],
globals: {
ga: false, // Google Analytics
cordova: false,
__statics: true,
process: true,
Capacitor: true,
chrome: true,
},
// add your custom rules here
rules: {
'no-param-reassign': 'off',
'import/first': 'off',
'import/named': 'error',
'import/namespace': 'error',
'import/default': 'error',
'import/export': 'error',
'import/extensions': 'off',
'import/no-unresolved': 'off',
'import/no-extraneous-dependencies': 'off',
'import/prefer-default-export': 'off',
'prefer-promise-reject-errors': 'off',
// allow debugger during development only
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化