diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 9220398..0000000 --- a/.eslintignore +++ /dev/null @@ -1,5 +0,0 @@ -dist -node_modules -package.json -tsconfig.json -vercel.json diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index 5225309..0000000 --- a/.eslintrc +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": [ - "@nuxtjs/eslint-config-typescript" - ], - "rules": { - "@typescript-eslint/no-unused-vars": [ - "off" - ], - "vue/multi-word-component-names": "off", - "vue/no-multiple-template-root": "off" - } -} diff --git a/package.json b/package.json index 522cd6b..d46822b 100644 --- a/package.json +++ b/package.json @@ -61,5 +61,18 @@ "patchedDependencies": { "nuxt@3.0.0-rc.13": "patches/nuxt@3.0.0-rc.13.patch" } - } + }, + "eslintConfig": { + "extends": [ + "@nuxtjs/eslint-config-typescript" + ], + "rules": { + "@typescript-eslint/no-unused-vars": [ + "off" + ], + "vue/multi-word-component-names": "off", + "vue/no-multiple-template-root": "off" + } + }, + "eslintIgnore": ["*.json", "node_modules", "*.md"] }