├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── icon.png └── use-extension.gif ├── jsconfig.json ├── package.json └── snippets ├── html.json └── javascript.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/README.md -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/use-extension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/images/use-extension.gif -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/snippets/html.json -------------------------------------------------------------------------------- /snippets/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevengregory/vscode-service-portal-snippets/HEAD/snippets/javascript.json --------------------------------------------------------------------------------