We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a bslint.json jsonschema
it would be great if bslint.json would have a json schema to improve IDE support (ex. on inline-docs, autocompletion and warnings), for example
{ "$schema": "https://{som-url}/bslint.schema.json", "rules": {}, "globals": [], "ignores": [] }
The text was updated successfully, but these errors were encountered:
Yeah, this would be great! Pretty sure schemas can be referenced locally too, so it could be bundled with bslint and referenced like:
{ "$schema": "./node_modules/@rokucommunity/bslint/schema.json", "rules": {}, "globals": [], "ignores": [] }
But I'd also be open to embedding it into the vscode extension so all roku devs get it automatically.
Any chance you'd be interested in working on this one?
Sorry, something went wrong.
No branches or pull requests
Summary
Create a bslint.json jsonschema
Details
it would be great if bslint.json would have a json schema to improve IDE support (ex. on inline-docs, autocompletion and warnings), for example
The text was updated successfully, but these errors were encountered: