Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scanapi/vscode-extension
Provides code completion for the ScanAPI YAML specification.
https://github.com/scanapi/vscode-extension
scanapi vs-code-extenstion yaml
Last synced: about 2 months ago
JSON representation
Provides code completion for the ScanAPI YAML specification.
- Host: GitHub
- URL: https://github.com/scanapi/vscode-extension
- Owner: scanapi
- License: mit
- Created: 2020-08-03T21:22:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T22:27:24.000Z (over 3 years ago)
- Last Synced: 2024-04-14T04:19:54.241Z (8 months ago)
- Topics: scanapi, vs-code-extenstion, yaml
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=ScanAPI.scanapi
- Size: 46.9 KB
- Stars: 4
- Watchers: 18
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
![](https://github.com/scanapi/design/raw/main/images/github-hero-dark.png)
# ScanAPI
An extension that provides code completion for the [ScanAPI](https://github.com/scanapi/scanapi) specification.
Check ScanAPI's [documentation](https://github.com/scanapi/scanapi) for futher information about the specification.
## Installing
Preferably, install it from the VS Code Marketplace, but if for some reason you can't, you can download the latest stable version [here](https://github.com/scanapi/vscode-extension/releases).
Install it using:
`code --install-extension file_name_here.vsix`
## Snippets
| Name | Result |
| -------: | ------------------------------------------------ |
| `cvar` | `Produces a custom var / ENV var interpolation.` |
| `pycode` | `Produces a python code interpolation.` |### `cvar`
```
${custom_var} or ${ENV_VAR}
```### `pycode`
```python
${{ assert 1 + 1 == 2 }}
```