renovate/lib/util/json-writer/code-format.ts

8 lines
191 B
TypeScript

import type { IndentationType } from './indentation-type';
export interface CodeFormat {
indentationSize?: number;
indentationType?: IndentationType;
maxLineLength?: number | 'off';
}