/** * @packageDocumentation * ESLint rule that runs `write-good` against source comments. */ import type { TSESLint } from "@typescript-eslint/utils"; import { type WriteGoodOptions } from "../_internal/write-good.js"; /** Message ids emitted by this rule. */ type MessageIds = "suggestion"; /** Configurable rule options. */ type Options = [WriteGoodOptions?]; /** Extra docs metadata carried by this plugin's rules. */ type PluginDocs = Readonly<{ recommended: boolean; }>; /** * Create the runtime write-good-comments rule. */ declare const writeGoodCommentsRule: TSESLint.RuleModule; export default writeGoodCommentsRule; //# sourceMappingURL=write-good-comments.d.ts.map