This is a command line interface to the json-stable-stringify library so you can format/sort JSON files using that algorithm. It supports .editorconfig and provides a pre-commit hook configuration.
- Use as CLI
- Use as Pre-Commit Hook
- VS Code Extension
- Controlling Formatting
- Warn vs. Autofix
- Known Issues
# Install
npm install -g @tillig/json-sort-cli
# See the options available
json-sort --help
# Check if files are sorted
json-sort *.json --insert-final-newline true
# Sort files if needed
json-sort *.json --insert-final-newline true --autofixThis is similar to the pretty-format-json hook with the following differences:
- Uses
json-stable-stringifyas the algorithm for sorting and formatting (for example, empty arrays will be expanded to two lines). - Supports JSON with comments (but will remove any comments on sort!).
- Obeys
.editorconfig, if present, for indents and line endings.
For basic checking, your hook will look like this:
repos:
- repo: https://github.com/tillig/json-sort-cli
rev: v1.0.0 # Use a version tag or SHA commit hash
hooks:
- id: json-sortYou can also pass arguments to control behavior, like auto-fixing any issues:
repos:
- repo: https://github.com/tillig/json-sort-cli
rev: v1.0.0 # Use a version tag or SHA commit hash
hooks:
- id: json-sort
args:
- --autofixThere is a VS Code extension that employs this same logic to help you format things proactively in your editor.
The default formatting for json-sort is:
- Two-spaces for indents.
- System newline for line endings.
- No final newline at the end of the content.
json-sort will obey .editorconfig settings in your repo. A sample .editorconfig might look like this:
root = true
# Default for all files
[*]
indent_style = space
insert_final_newline = true
# Specific overrides for JSON files
[*.json]
indent_size = 2
The specific .editorconfig directives that can affect formatting are:
end_of_line: Set tolf,cr, orcrlfto specify the line ending type. If unset, the system line ending will be used.indent_size: The number of spaces to use for an indent. Ifindent_styleistab, this value is ignored.indent_style: Set totaborspaceto use hard or soft tabs respectively.insert_final_newline: Set totrueto add a newline at the end of the sorted content,falseto skip adding the line ending.
You can specify command line options to control formatting as well. These correspond to the .editorconfig settings.
--end-of-line--indent-size--indent-style--insert-final-newline
Command line options take precedence over .editorconfig settings; .editorconfig settings override defaults.
If json-sort detects any changes in content due to sorting, it will exit with a non-zero code.
By default, the formatter is non-destructive - it will warn you if the sorted content is different from the original content. This allows for easier integration with pre-commit hooks and build scripts where you don't want these things automatically changing content.
If you want the formatter to overwrite the existing file with the sorted content, specify the --autofix argument.
Console output from the command will tell you if the difference is structural or whitespace. Since the sort command obeys .editorconfig there are sometimes non-obvious differences - file encoding, tabs vs. spaces, etc. The messages will tell you what the sort thinks needs changing.
Here are some things you'll discover on sorting JSON. (If you have a fix for these, I'd love a PR.)
Technically JSON doesn't support comments. The parser uses the JSON5 reader to allow sorting JSON with comments, but the comments will be removed from the sorted output.
For example, if you have:
{
"value": 5.551634280063769e-06
}The sorted version of that is:
{
"value": 0.000005551634280063769
}This is all part of how JSON.stringify() works and is not within the control of the CLI or parsing libraries.
For example, if you have:
{
"value": "Qu\u00e9bec"
}The sorted version of that is:
{
"value": "Québec"
}The original \u encoding will not be retained. This is all part of how JSON.stringify() works and is not within the control of the CLI or parsing libraries.
If you do have characters that require encoding, like this:
{
"value": "data\ndata"
}That character will remain encoded in the serialized output.