Move the webapp into its own folder

This commit is contained in:
iamBadgers
2025-06-02 17:56:58 -07:00
parent cf3abe92f5
commit f6fcf82eae
51 changed files with 2 additions and 2 deletions

20
app/frontend/.eslintrc.js Normal file
View File

@@ -0,0 +1,20 @@
/**
* .eslint.js
*
* ESLint configuration file.
*/
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
],
rules: {
'vue/multi-word-component-names': 'off',
},
}