Fix eslint config and apply all fixes.

This commit is contained in:
Kavin 2023-07-27 12:46:05 +01:00
parent 6c05f63bef
commit 301877e2e1
No known key found for this signature in database
GPG key ID: 6E4598CA5C92C41F
35 changed files with 308 additions and 285 deletions

7
.eslintrc.cjs Normal file
View file

@ -0,0 +1,7 @@
module.exports = {
root: true,
env: {
node: true,
},
extends: ["plugin:vue/vue3-recommended", "eslint:recommended", "plugin:prettier/recommended"],
};