An open API service indexing awesome lists of open source software.

https://github.com/busterc/vscode-ndjson-colorizer

:art: VSCode extension colorizes NDJSON (Newline Delimited JSON) files
https://github.com/busterc/vscode-ndjson-colorizer

colorize colorizer json-ld jsonld jsonlines ndjson vscode-extension vscode-language

Last synced: 2 months ago
JSON representation

:art: VSCode extension colorizes NDJSON (Newline Delimited JSON) files

Awesome Lists containing this project

README

        

# NDJSON Colorizer [![Version](https://vsmarketplacebadge.apphb.com/version/buster.ndjson-colorizer.svg)](https://marketplace.visualstudio.com/items?itemName=buster.ndjson-colorizer)

> colorizes [NDJSON](http://ndjson.org/) (Newline Delimited JSON) files

## With :)

![](https://i.imgur.com/BxbVa1m.png)

## Without :(

![](https://i.imgur.com/UH4HW2L.png)

## FYI

* By default only `*.ndjson` files are colorized.
* You can update your settings file(s) as needed, using `"files.associations"`:

```json
{
// ...

"files.associations": {
"*.db": "ndjson",
"*.jsonl": "ndjson",
"*.njson": "ndjson"
}
}
```