tweak semi-colon regex
parent
44e6b9ab9d
commit
73886ffbf0
|
@ -47,7 +47,7 @@ export async function stringifyRoot(state: State, root: Root, uri?: string): Pro
|
||||||
|
|
||||||
return clone
|
return clone
|
||||||
.toString()
|
.toString()
|
||||||
.replace(/([^}{;])$/gm, '$1;')
|
.replace(/([^;{}\s])\n}/g, '$1;\n}')
|
||||||
.replace(/^(?: )+/gm, (indent: string) => ' '.repeat((indent.length / 4) * tabSize))
|
.replace(/^(?: )+/gm, (indent: string) => ' '.repeat((indent.length / 4) * tabSize))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue