From aa476d619434fba88984604c5fa2d3a530775926 Mon Sep 17 00:00:00 2001 From: ocavue Date: Tue, 15 Oct 2024 02:39:38 +1100 Subject: [PATCH 1/2] Fix Linter type import in index.d.ts (#2572) --- lib/index.d.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/index.d.ts b/lib/index.d.ts index 48006c40a..2651c4d55 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -1,3 +1,5 @@ +import type { Linter } from 'eslint' + declare const vue: { meta: any configs: { @@ -19,19 +21,19 @@ declare const vue: { } rules: Record processors: { - ".vue": any + '.vue': any vue: any } environments: { /** * @deprecated */ - "setup-compiler-macros": { + 'setup-compiler-macros': { globals: { - defineProps: "readonly" - defineEmits: "readonly" - defineExpose: "readonly" - withDefaults: "readonly" + defineProps: 'readonly' + defineEmits: 'readonly' + defineExpose: 'readonly' + withDefaults: 'readonly' } } } From 7502cf8b9e06f0dfe0a805b5534b3766ba528954 Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Mon, 21 Oct 2024 00:05:28 +0900 Subject: [PATCH 2/2] 9.29.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e2bf46eae..626268933 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-vue", - "version": "9.29.0", + "version": "9.29.1", "description": "Official ESLint plugin for Vue.js", "main": "lib/index.js", "types": "lib/index.d.ts",