SourceTermAnalysisSystem_vue/node_modules/eslint-plugin-toml/lib/configs/flat/base.d.ts
2026-05-15 10:22:44 +08:00

22 lines
489 B
TypeScript

import type { ESLint } from "eslint";
import * as parser from "toml-eslint-parser";
declare const _default: ({
plugins: {
readonly toml: ESLint.Plugin;
};
files?: undefined;
languageOptions?: undefined;
rules?: undefined;
} | {
files: string[];
languageOptions: {
parser: typeof parser;
};
rules: {
"no-irregular-whitespace": "off";
"spaced-comment": "off";
};
plugins?: undefined;
})[];
export default _default;