file: initialize file

This commit is contained in:
Leon Xu
2021-12-29 17:51:46 -08:00
parent a52b1b5ef3
commit 923a1c858a
31 changed files with 30426 additions and 86 deletions
+17
View File
@@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
}
}