1
0

初始框架(1.0.0)

This commit is contained in:
2022-03-01 23:42:21 +08:00
parent 2a70a2bcee
commit ca2151429f
28 changed files with 21194 additions and 0 deletions

19
.eslintrc.js Normal file
View File

@@ -0,0 +1,19 @@
// const isProduction = (process.env.NODE_ENV === 'production');
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'eslint:recommended',
],
parserOptions: {
parser: '@babel/eslint-parser'
},
rules: {
// 'no-console': (isProduction ? 'warn' : 'off'),
// 'no-debugger': (isProduction ? 'warn' : 'off'),
}
};