14 lines
718 B
TypeScript
Executable file
14 lines
718 B
TypeScript
Executable file
declare type Options = [
|
|
{
|
|
readonly boundTextAllowedPattern?: string;
|
|
readonly checkId?: boolean;
|
|
readonly checkText?: boolean;
|
|
readonly checkAttributes?: boolean;
|
|
readonly ignoreAttributes?: readonly string[];
|
|
readonly ignoreTags?: readonly string[];
|
|
}
|
|
];
|
|
export declare type MessageIds = 'i18nAttribute' | 'i18nId' | 'i18nIdOnAttribute' | 'i18nSuggestIgnore' | 'i18nText';
|
|
export declare const RULE_NAME = "i18n";
|
|
declare const _default: import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleModule<MessageIds, Options, import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleListener>;
|
|
export default _default;
|