From b65f51a6fd712774f5d6229aff5fa725e33f3a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Mon, 14 Jul 2025 23:21:16 +0900 Subject: [PATCH] fix: remove unused types from `types.ts` --- src/types.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/types.ts b/src/types.ts index 64afc5bc..c92a197e 100644 --- a/src/types.ts +++ b/src/types.ts @@ -38,7 +38,6 @@ import type { // Extensions (front matter) Yaml, } from "mdast"; -import type { Linter } from "eslint"; import type { LanguageOptions, LanguageContext, @@ -78,10 +77,6 @@ export interface Block extends Node, BlockBase { meta: string | null; } -export type Message = Linter.LintMessage; - -export type RuleType = "problem" | "suggestion" | "layout"; - /** * Markdown TOML. */