vscode-ndjson
Vscode extension to support NDJSON (newline delimited Json) files

About
This was forked from NDJSON Colorizer,
initially to add the content of the Grammar refactor and Language Diagnostic PR n°1 Pull request
Internaly it reuse json grammar and add some language support for JSON, syntax errors being notably displayed in the gutter.
NDJSON support Preview

Configuration
- By default only
*.ndjson files are colorized.
- You can update your settings file(s) as needed, using
"files.associations":
{
// ...
"files.associations": {
"*.db": "ndjson",
"*.jsonl": "ndjson",
"*.njson": "ndjson"
}
}
| |