renovate/lib/util/json-writer/code-format.ts
Maksim 4aa5b52992
feat(onboarding): use .editorconfig file to get indentation style (#11456)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-11-05 13:25:50 +00:00

6 lines
157 B
TypeScript

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