1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-24 07:39:41 +02:00

chore: lint-and-fix-vue-demi-imports (#1762)

* lint for 'vue-demi' imports

* fix invalid imports
This commit is contained in:
Hayden 2022-10-23 13:02:56 -08:00 committed by GitHub
parent 46161ef12b
commit 97d9e2a109
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 29 additions and 15 deletions

View file

@ -52,7 +52,10 @@ module.exports = {
"ts-ignore": "allow-with-description",
},
],
"no-restricted-imports": ["error", { paths: ["@vue/reactivity", "@vue/runtime-dom", "@vue/composition-api"] }],
"no-restricted-imports": [
"error",
{ paths: ["@vue/reactivity", "@vue/runtime-dom", "@vue/composition-api", "vue-demi"] },
],
// TODO Gradually activate all rules
"@typescript-eslint/no-unsafe-assignment": "off",