diff --git a/.eslintrc b/.eslintrc index a7092ba..4902c1e 100644 --- a/.eslintrc +++ b/.eslintrc @@ -28,7 +28,9 @@ // Demote this to warning as long as we are still using cjs modules "import/named": "warn", // Import order is handled by prettier (which is incompatible with this rule: https://github.com/simonhaenisch/prettier-plugin-organize-imports/issues/65) - "import/order": "off" + "import/order": "off", + // Disable vue2-specific rules (until https://github.com/nuxt/eslint-config/issues/216 is fixed) + "vue/no-v-model-argument": "off" }, "overrides": [ { diff --git a/examples/vite/src/App.vue b/examples/vite/src/App.vue index d05208d..009cb62 100644 --- a/examples/vite/src/App.vue +++ b/examples/vite/src/App.vue @@ -4,17 +4,19 @@ import TheWelcome from './components/TheWelcome.vue'