├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE ├── README.md ├── icon.png ├── package.json ├── src ├── cliformat.ts ├── extension.ts ├── formatter.ts └── prettyprint.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .angulardoc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/package.json -------------------------------------------------------------------------------- /src/cliformat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/src/cliformat.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/src/formatter.ts -------------------------------------------------------------------------------- /src/prettyprint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/src/prettyprint.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringham/angular-template-formatter/HEAD/yarn.lock --------------------------------------------------------------------------------