版本初始化

This commit is contained in:
liupengcheng
2024-08-29 09:44:54 +08:00
commit efbe95fa21
74 changed files with 43621 additions and 0 deletions

18
.eslintrc.js Normal file
View File

@@ -0,0 +1,18 @@
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/essential',
// '@vue/standard'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', // 禁止生产使用debug模式
'space-before-function-paren': 0 //去掉function与()之间空格
}
}