eslint-plugin-formatjs
Version:
ESLint plugin for formatjs
10 lines (9 loc) • 327 B
TypeScript
import { RuleModule } from '@typescript-eslint/utils/ts-eslint';
export declare const name = "no-emoji";
type MessageIds = 'notAllowed' | 'notAllowedAboveVersion';
type NoEmojiConfig = {
versionAbove: string;
};
export type Options = [NoEmojiConfig?];
export declare const rule: RuleModule<MessageIds, Options>;
export {};