├── .DS_Store ├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── code_of_conduct ├── LICENSE └── README.md ├── images ├── azure-functions-logo-128.jpg ├── json-schema-function.gif └── use-snippets.gif ├── package.json └── snippets ├── javascript.json └── typescript.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log* 2 | *.vsix -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/README.md -------------------------------------------------------------------------------- /code_of_conduct/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/code_of_conduct/LICENSE -------------------------------------------------------------------------------- /code_of_conduct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/code_of_conduct/README.md -------------------------------------------------------------------------------- /images/azure-functions-logo-128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/images/azure-functions-logo-128.jpg -------------------------------------------------------------------------------- /images/json-schema-function.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/images/json-schema-function.gif -------------------------------------------------------------------------------- /images/use-snippets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/images/use-snippets.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/package.json -------------------------------------------------------------------------------- /snippets/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/snippets/javascript.json -------------------------------------------------------------------------------- /snippets/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/vscode-azure-functions-tools/HEAD/snippets/typescript.json --------------------------------------------------------------------------------