0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 13:38:32 +00:00
renovatebot_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';
}