ISSUE-72| Update more deps
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
2024-02-21 06:40:53 +01:00
parent 6f12f577d4
commit a49bd3feef
3 changed files with 465 additions and 190 deletions

View File

@ -12,6 +12,9 @@ module.exports = {
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'vue/multi-word-component-names': 'off',
'vue/no-useless-template-attributes': 'off',
'vue/no-reserved-component-names': 'off'
}
}