/** @typedef {Object} TextLintFormatterOption * @property {string} formatterName * @property {boolean} noColor */ export interface TextLintFormatterOption { formatterName: string; color?: boolean; }