mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-02 18:56:52 +00:00
This new hook allows to standardize one's JSON files (sorted key/4 spaces indent). By default it just fails if any file is not complying with the standard, but you can also pass the arg `--autofix` and the hook will pretty-format the file itself. Good in use combined with the `check-json` hook.
5 lines
66 B
JSON
5 lines
66 B
JSON
{
|
|
"foo": "bar",
|
|
"alist": [2, 34, 234],
|
|
"blah": null
|
|
}
|