@softwareventures/maintain-project
Version:
Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited
12 lines • 356 B
JavaScript
import { EOL } from "os";
import formatXml from "xml-formatter";
export function formatIdeaXml(dom) {
return formatXml(dom.serialize(), {
collapseContent: true,
lineSeparator: EOL,
indentation: " ",
stripComments: true,
whiteSpaceAtEndOfSelfclosingTag: true
});
}
//# sourceMappingURL=format-idea-xml.js.map