first commit

This commit is contained in:
Warunee Tamkoo 2023-12-20 10:04:43 +07:00
commit 288971d1d7
60 changed files with 1546 additions and 0 deletions

19
.eslintrc.js Normal file
View file

@ -0,0 +1,19 @@
module.exports = {
root: true,
env: {
node: true,
es2022: true,
},
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/typescript/recommended',
],
rules: {
// 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
// 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
'vue/no-mutating-props': 'off',
// '@typescript-eslint/no-explicit-any': 'off',
'vue/multi-word-component-names': 'off'
},
}