0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-01-12 22:29:06 +00:00
renovatebot_renovate/lib/util/json-writer/code-format.ts

7 lines
191 B
TypeScript

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