mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 22:29:06 +00:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import type { IndentationType } from './indentation-type';
|
|
|
|
export interface CodeFormat {
|
|
indentationSize?: number;
|
|
indentationType?: IndentationType;
|
|
maxLineLength?: number | 'off';
|
|
}
|