added initial files vue

This commit is contained in:
Kostya
2023-11-12 21:39:22 +03:00
parent d7cc217979
commit 2771f216da
15 changed files with 11970 additions and 0 deletions

17
luckydiamond/.eslintrc.js Normal file
View File

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