eslint-plugin-yaml
Version:
35 lines (34 loc) • 793 B
TypeScript
import type { Linter } from "eslint";
declare const pkg: {
name: string;
version: string;
};
declare const plugin: {
meta: {
name: string;
version: string;
type: string;
docs: {
description: string;
category: string;
recommended: boolean;
url: string;
};
fixable: string;
schema: never[];
};
processors: {
[pkg.name]: {
meta: {
name: string;
version: string;
};
postprocess: (_messages: Linter.LintMessage[][], filePath: string) => Linter.LintMessage[];
};
};
configs: {
recommended: Linter.Config;
legacy: Linter.LegacyConfig;
};
};
export default plugin;