jsonc_tools 0.0.1

jsonc_tools: Tools to deal with `jsonc` files. See, [JSON with Comments](https://code.visualstudio.com/docs/languages/json#_json-with-comments) and [jsonc](https://komkom.github.io/) (A Json like file format with comments). See, [User and Workspace Settings](https://code.visualstudio.com/docs/getstarted/settings) and [Settings - vscode](https://vscode.readthedocs.io/en/latest/getstarted/settings/) for example files.
Documentation
# Denote all files that are truly binary and should not be modified.

*.pdf   binary
# *.pdf   binary filter=lfs diff=lfs merge=lfs -text
*.png   binary
*.jpg   binary
*.jpeg  binary
*.gif   binary
*.ico   binary
*.icon  binary

# Fonts
*.eot   binary
*.otf   binary diff=exif
*.ttc   binary diff=exif
*.ttf   binary diff=exif
*.woff  binary
*.woff2 binary

# Sound
*.mp4   binary
*.webm  binary
*.ogg   binary
*.mp3   binary
*.wav   binary
*.flac  binary
*.aac   binary

########
# Rust #
# https://github.com/rust-lang/rust-clippy/blob/master/.gitattributes

* text=auto eol=lf
*.rs text eol=lf whitespace=tab-in-indent,trailing-space,tabwidth=4
*.fixed linguist-language=Rust
########