├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ ├── main.yml │ └── pullrequest.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── FormatSelection.png ├── Minimize.gif ├── Prettify.gif ├── after.png ├── before.png ├── logo.png ├── old_logo.png ├── screenshot.png └── settings.png ├── lib ├── XmlFormatter.CommandLine.deps.json ├── XmlFormatter.CommandLine.dll ├── XmlFormatter.CommandLine.exe ├── XmlFormatter.CommandLine.pdb ├── XmlFormatter.CommandLine.runtimeconfig.json ├── XmlFormatter.dll └── XmlFormatter.pdb ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── constants.ts ├── documentFilter.ts ├── documentHelper.ts ├── extension.ts ├── formatter.ts ├── formattingActionKind.ts ├── helper.ts ├── jsonInputDto.ts ├── logger.ts ├── notificationService.ts ├── prettyXmlFormattingEditProvider.ts ├── rangeFormatterProvider.ts ├── regexFormatter.ts ├── settings.ts ├── test │ └── runTest.ts └── updateNote.ts ├── tsconfig.json └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pullrequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.github/workflows/pullrequest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/README.md -------------------------------------------------------------------------------- /images/FormatSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/images/FormatSelection.png -------------------------------------------------------------------------------- /images/Minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/images/Minimize.gif -------------------------------------------------------------------------------- /images/Prettify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/images/Prettify.gif -------------------------------------------------------------------------------- /images/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/images/after.png -------------------------------------------------------------------------------- /images/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/images/before.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/old_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/images/old_logo.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/images/settings.png -------------------------------------------------------------------------------- /lib/XmlFormatter.CommandLine.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/lib/XmlFormatter.CommandLine.deps.json -------------------------------------------------------------------------------- /lib/XmlFormatter.CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/lib/XmlFormatter.CommandLine.dll -------------------------------------------------------------------------------- /lib/XmlFormatter.CommandLine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/lib/XmlFormatter.CommandLine.exe -------------------------------------------------------------------------------- /lib/XmlFormatter.CommandLine.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/lib/XmlFormatter.CommandLine.pdb -------------------------------------------------------------------------------- /lib/XmlFormatter.CommandLine.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/lib/XmlFormatter.CommandLine.runtimeconfig.json -------------------------------------------------------------------------------- /lib/XmlFormatter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/lib/XmlFormatter.dll -------------------------------------------------------------------------------- /lib/XmlFormatter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/lib/XmlFormatter.pdb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | onlyBuiltDependencies: 2 | - esbuild 3 | -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/documentFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/documentFilter.ts -------------------------------------------------------------------------------- /src/documentHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/documentHelper.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/formatter.ts -------------------------------------------------------------------------------- /src/formattingActionKind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/formattingActionKind.ts -------------------------------------------------------------------------------- /src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/helper.ts -------------------------------------------------------------------------------- /src/jsonInputDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/jsonInputDto.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/notificationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/notificationService.ts -------------------------------------------------------------------------------- /src/prettyXmlFormattingEditProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/prettyXmlFormattingEditProvider.ts -------------------------------------------------------------------------------- /src/rangeFormatterProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/rangeFormatterProvider.ts -------------------------------------------------------------------------------- /src/regexFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/regexFormatter.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/updateNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/src/updateNote.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmahend1/PrettyXML/HEAD/webpack.config.js --------------------------------------------------------------------------------