* initialisation of all libraries

feature: #1
This commit is contained in:
2022-12-30 00:45:54 +01:00
parent b25ca09f32
commit af3b12344f
22 changed files with 7736 additions and 153 deletions

View File

@@ -4,10 +4,16 @@ require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended',
'plugin:vue/vue3-recommended',
'@vue/eslint-config-prettier'
],
'rules': {
'vue/max-attributes-per-line': 'off',
'vue/html-closing-bracket-newline': 'off',
'vue/multi-word-component-names': 'off',
'vue/html-self-closing': 'off',
'vue/singleline-html-element-content-newline': 'off'
},
parserOptions: {
ecmaVersion: 'latest'
}