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