UNPKG

eslint-plugin-markup

Version:

An incredible ESLint plugin for all markup languages based on markuplint

11 lines (10 loc) 452 B
import type { TSESLint, TSESTree } from '@typescript-eslint/utils'; export declare const meta: { name: string; version: string; }; export interface MarkupParserOptions extends TSESLint.Linter.ParserOptions { filePath?: string; } export declare const parseForESLint: (text: string, _options?: MarkupParserOptions) => TSESLint.Parser.ParseResult; export declare const parse: (text: string, options?: MarkupParserOptions) => TSESTree.Program;