https://github.com/willowtreeapps/vscode-ide-brightscript
Brightscript support for vscode
https://github.com/willowtreeapps/vscode-ide-brightscript
Last synced: 7 months ago
JSON representation
Brightscript support for vscode
- Host: GitHub
- URL: https://github.com/willowtreeapps/vscode-ide-brightscript
- Owner: willowtreeapps
- License: apache-2.0
- Archived: true
- Created: 2018-01-01T20:53:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-18T19:56:06.000Z (over 6 years ago)
- Last Synced: 2024-08-07T23:57:46.456Z (11 months ago)
- Language: TypeScript
- Size: 1.05 MB
- Stars: 5
- Watchers: 136
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# VSCode IDE Brightscript
[](https://marketplace.visualstudio.com/items?itemName=willowtree.vscode-ide-brightscript)
VSCode editing support for Brightscript.

# Features
* Code snippets for common statements (ifs, for, while, function)
* On the fly linting and error checking
* Code region folding# Requirements
* VSCode 1.16.0 or higher
# Setup
Linting is managed by [Wist](https://github.com/willowtreeapps/wist/). As a result you can manage linting rules by providing a `.wistrc.json` in the root of your project.
```json
{
"rules": {
"no-stop": ["error"],
"no-print": ["warn"]
}
}
```More information about rules you can enable/disable are available [here](https://github.com/willowtreeapps/wist/)
# Contributing
Contributions and suggestions are more than welcome.
Please see our [Code of Conduct](/CODE_OF_CONDUCT.md) as well as our [Contributing Guidelines ](/CONTRIBUTING.md)
for more information.# Resources
This project makes use of the following projects for advanced features.
1. [Hinoki](https://github.com/willowtreeapps/hinoki/) - Brightscript language server.
2. [Wist](https://github.com/willowtreeapps/wist/) - A linting engine for Brightscript.