CLI interface to json-stable-stringify that can also be used as a pre-commit hook.
npm install @tillig/json-sort-cliThis 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.
``shInstall
npm install -g @tillig/json-sort-cli
Use as Pre-Commit Hook
pretty-format-json hook with the following differences:json-stable-stringify as 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:
`yaml
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
`You can also pass arguments to control behavior, like auto-fixing any issues:
`yaml
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:
- --autofix
`Controlling Formatting
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:`text
root = trueDefault for all files
[*]
indent_style = space
insert_final_newline = trueSpecific overrides for JSON files
[*.json]
indent_size = 2
`The specific
.editorconfig directives that can affect formatting are:-
end_of_line: Set to lf, cr, or crlf to 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. If indent_style is tab, this value is ignored.
- indent_style: Set to tab or space to use hard or soft tabs respectively.
- insert_final_newline: Set to true to add a newline at the end of the sorted content, false to 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-newlineCommand line options take precedence over
.editorconfig settings; .editorconfig settings override defaults.Warn vs. Autofix
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.