mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-03-29 18:16: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.
9 lines
76 B
JSON
9 lines
76 B
JSON
{
|
|
"alist": [
|
|
2,
|
|
34,
|
|
234
|
|
],
|
|
"blah": null,
|
|
"foo": "bar"
|
|
}
|