VS Code extension for working with Azure Pipelines YAML files
Перейти к файлу
Matt Cooper 803bc00712
Merge pull request #210 from Microsoft/vtbassmatt-patch-1
add keywords for Marketplace
2019-03-18 12:59:05 -04:00
.azure-pipelines fix a build issue by changing the npm cache directory (#208) 2019-02-22 10:49:50 -05:00
.vscode add attach to server debug target (#135) 2018-11-05 16:06:07 -05:00
assets add Pipelines icon 2018-08-14 09:11:22 -04:00
examples remove two more bogus test cases 2018-09-11 07:22:06 -04:00
src Update unittests 2019-01-25 14:37:22 -05:00
syntaxes minor comment 2018-08-06 14:40:53 -04:00
tools/extract-yaml-testcases address a few bugs found by running the test suite 2018-09-10 14:41:29 -04:00
.gitattributes generated extension using yo code 2018-08-01 11:00:40 -04:00
.gitignore generated extension using yo code 2018-08-01 11:00:40 -04:00
.vscodeignore ignore correct files in the VSIX 2018-09-11 09:44:43 -04:00
CHANGELOG.md expand list of characters accepted in an expression (#194) 2019-01-10 09:19:58 -05:00
CONTRIBUTING.md split README and CONTRIBUTING 2018-08-09 11:08:26 -04:00
LICENSE Initial commit 2018-07-31 11:39:51 -07:00
README.md Remove outdated info about GitLens 2018-12-03 09:43:45 -05:00
RELEASE.md simplify release instructions 2018-11-26 14:48:40 -05:00
dt-tasks-json-response.json add new dt-tasks response 2018-11-28 16:17:48 -05:00
language-configuration.json First pass. 2018-08-06 10:36:07 -04:00
local-schema.json Update generation to fix required 2019-01-25 14:29:24 -05:00
package-lock.json consume version 0.5.4 of the language server (#207) 2019-02-21 17:03:51 -05:00
package.json CI/CD 2019-03-18 12:53:38 -04:00
tsconfig.json Add credentialstore back. Fix js output. Fix exe getting copied. 2018-08-23 10:04:14 -04:00
tslint.json generated extension using yo code 2018-08-01 11:00:40 -04:00

README.md

Build Status

Azure Pipelines for VS Code

Get it on the VS Code Marketplace!

This VS Code extension brings syntax highlighting and autocompletion for Azure Pipelines YAML to VS Code. Basic YAML validation is built in to VS Code, but now you can have syntax highlighting that's aware of the Pipelines YAML schema. This means that you get red squigglies if you say tasks: where you meant task:. IntelliSense is also schema-aware. Wherever you are in the file, press Ctrl-Space (Cmd-Space on macOS) to see what options you have at that point.

By default, the extension will highlight known Azure Pipelines files in the root of your workspace. You can change the language mode at the lower right to work with one file at a time. Click the language picker, then choose "Azure Pipelines". If you have files which should always use this extension, set your user or workspace settings to match those file paths with this extension. For example:

"files.associations": {
  "**/ci/*.yml": "azure-pipelines"
}

Telemetry

This extension collects telemetry data to help us build a better experience for using VS Code with Azure Pipelines. We use vscode-extension-telemetry, which reports the following data:

  • Extension name
  • Extension version
  • Machine ID and session ID from VS Code
  • Operating system
  • Platform version

Additionally, if the language server fails to activate, we report the diagnostic data the language server produces. The extension respects the telemetry.enableTelemetry setting, which you can learn more about at VS Code's telemetry FAQ.

Contributing

See CONTRIBUTING.md if you want to jump in!