diff --git a/src/powerquery-formatter/format.ts b/src/powerquery-formatter/format.ts index ea2a26c..1577d47 100644 --- a/src/powerquery-formatter/format.ts +++ b/src/powerquery-formatter/format.ts @@ -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 { diff --git a/src/test/common.ts b/src/test/common.ts index 94648b8..06f8eca 100644 --- a/src/test/common.ts +++ b/src/test/common.ts @@ -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 {