Basic UI rework

This commit is contained in:
mcarquigny
2025-03-20 15:54:16 +01:00
parent 742da61016
commit 12086a4c88
28 changed files with 1259 additions and 24 deletions

View File

@ -26,14 +26,14 @@ module.exports = {
// 'plugin:vue/vue3-recommended', // Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead)
'standard'
],
plugins: [
// https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-files
// required to lint *.vue files
'vue',
],
globals: {
@ -51,7 +51,7 @@ module.exports = {
// add your custom rules here
rules: {
// allow async-await
'generator-star-spacing': 'off',
// allow paren-less arrow functions
@ -68,8 +68,12 @@ module.exports = {
'import/extensions': 'off',
'import/no-unresolved': 'off',
'import/no-extraneous-dependencies': 'off',
'prefer-promise-reject-errors': 'off',
'prefer-const': 'off',
'no-unused-vars': 'off',
'no-trailing-spaces' : 'off',
'vue/multi-word-component-names' : 'off',
// allow debugger during development only
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'