当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 78

huanglingz/lin-cms-vue
暂停

forked from 林间有风/lin-cms-vue 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
一飞同学 提交于 2020-04-17 09:46 . upgrade to version 0.3.5 (#308)
module.exports = {
root: true,
env: {
browser: true,
es6: true,
node: true,
jest: true,
},
plugins: ['vue'],
extends: ['plugin:vue/essential', '@vue/airbnb'],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'import/extensions': 0, // import不需要写文件扩展名
'import/no-unresolved': 0,
// 'import/no-duplicates': 0,
'no-underscore-dangle': 0, // 无下划线
camelcase: 0, // 变量可以用下划线
semi: ['error', 'never'], // 无分号
'no-extra-semi': 0, // 和prettier冲突
'no-plusplus': 0, // 禁止使用++,--
// 'no-tabs': [o],
'guard-for-in': 0,
'max-len': ['error', { code: 200 }],
'no-restricted-syntax': 0,
'import/no-extraneous-dependencies': ['error', { devDependencies: ['script/**/*.js'] }],
'no-restricted-syntax': 0,
'class-methods-use-this': 'off',
'consistent-return': 'off',
'arrow-parens': ['error', 'as-needed'],
'no-prototype-builtins': 'off',
'object-curly-newline': [
'error',
{
ImportDeclaration: 'never',
},
],
'comma-dangle': ['error', 'only-multiline'],
'no-param-reassign': ['error', { props: false }],
'max-len': 0,
},
parserOptions: {
parser: 'babel-eslint',
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/huanglingz/lin-cms-vue.git
git@gitee.com:huanglingz/lin-cms-vue.git
huanglingz
lin-cms-vue
lin-cms-vue
master

搜索帮助