This commit is contained in:
JordanBoltonMN 2022-09-27 09:14:27 -05:00
Родитель af4903dbb4
Коммит c1626b6008
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -41,8 +41,8 @@ export interface FormatSettings extends PQP.Settings {
export const DefaultSettings: FormatSettings = {
...PQP.DefaultSettings,
indentationLiteral: IndentationLiteral.SpaceX4,
newlineLiteral: NewlineLiteral.Windows,
maxWidth: 120,
newlineLiteral: NewlineLiteral.Windows,
};
export async function tryFormat(formatSettings: FormatSettings, text: string): Promise<TriedFormat> {

Просмотреть файл

@ -10,8 +10,8 @@ import { FormatSettings, IndentationLiteral, NewlineLiteral, TriedFormat, tryFor
const DefaultFormatSettings: FormatSettings = {
...PQP.DefaultSettings,
indentationLiteral: IndentationLiteral.SpaceX4,
newlineLiteral: NewlineLiteral.Unix,
maxWidth: 120,
newlineLiteral: NewlineLiteral.Unix,
};
export function compare(expected: string, actual: string, newlineLiteral: NewlineLiteral = NewlineLiteral.Unix): void {