This commit is contained in:
Adrian Hopek
2022-01-11 12:50:09 +01:00
parent 160ce40f82
commit 108f3d9103
7 changed files with 1334 additions and 106 deletions

16
.eslintrc.js Normal file
View File

@@ -0,0 +1,16 @@
module.exports = {
env: {
node: true,
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
],
rules: {
semi: [2, 'always'],
quotes: ['error', 'single'],
indent: ['error', 4],
'vue/html-indent': ['error', 4],
'vue/multi-word-component-names': 'off',
}
};