/** * @packageDocumentation * ESLint rule that checks source comments for exclusionary or inconsiderate language. */ import type { TSESLint } from "@typescript-eslint/utils"; /** Configurable rule options. */ type InclusiveLanguageCommentsOptions = Readonly<{ allow?: readonly string[]; deny?: readonly string[]; noBinary?: boolean; }>; /** Message ids emitted by this rule. */ type MessageIds = "problem"; /** Configurable rule options tuple. */ type Options = [InclusiveLanguageCommentsOptions?]; /** Extra docs metadata carried by this plugin's rules. */ type PluginDocs = Readonly<{ recommended: boolean; }>; /** Create the runtime inclusive-language-comments rule. */ declare const inclusiveLanguageCommentsRule: TSESLint.RuleModule; export default inclusiveLanguageCommentsRule; //# sourceMappingURL=inclusive-language-comments.d.ts.map