4 Star 2 Fork 0

echodevelopgroup/echo-lottery-web-ing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 852 Bytes
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
root: true,
env: {
node: true
},
extends: ['plugin:vue/essential', 'eslint:recommended', '@vue/prettier'],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
semi: ['error', 'never'],
quotes: ['error', 'single'],
// 函数名和参数列表之间的空格
'space-before-function-paren': [
'error',
{
// 匿名函数必须要空格
anonymous: 'always',
// 具名函数必须不要空格
named: 'never'
}
]
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)'
],
env: {
mocha: true
}
}
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/echodevelopgroup/echo-lottery-web-ing.git
git@gitee.com:echodevelopgroup/echo-lottery-web-ing.git
echodevelopgroup
echo-lottery-web-ing
echo-lottery-web-ing
master

搜索帮助