A plugin for Prettier that sorts JSON files by property name.
This plugin adds a JSON preprocessor that will sort JSON files alphanumerically by key.
By default, top-level object entries are sorted by key lexically using Array.sort
, according to each character's Unicode code point value. It can be configured to sort recursively, and with a custom sort order.
Before:
{
"z": null,
"a": null,
"0": null,
"exampleNestedObject": {
"z": null,
"a": null
}
}
After:
{
"0": null,
"a": null,
"exampleNestedObject": {
"z": null,
"a": null
},
"z": null
}
-
Non-objects
This is meant to sort objects. JSON files with a top-level value that is not an object are skipped.
-
JSON files with dedicated Prettier parsers
This will not sort
package.json
,package-lock.json
, orcomposer.json
. This plugin only affects thejson
parser used by Prettier. Prettier uses an alternate parser (json-stringify
) for those three specific files (See here for details). -
JSON embedded in other files
This will not sort JSON objects within other types of files, such as JavaScript or TypeScript files. This is just for sorting JSON files.
This module requires an LTS Node version (v16.0.0+), and prettier
v3+.
We are maintaining support for Prettier v2 on version 2 of this plugin. See the main-v2 branch for instructions on using v2 of this plugin.
Using npm
:
npm install --save-dev prettier-plugin-sort-json
Using pnpm
:
pnpm add --save-dev prettier-plugin-sort-json
Using yarn
:
yarn add --dev prettier-plugin-sort-json
Then follow these instructions to load the plugin.
There are some additional configuration options available (described below), but they are all optional.
{
"plugins": ["prettier-plugin-sort-json"]
}
These configuration options are all optional. Each option can be set as a CLI flag, or as an entry in your Prettier configuraton (e.g. in your .prettierrc
file).
Here are example Prettier configuration files with all default options set:
-
.prettierrc.json
:{ "plugins": ["prettier-plugin-sort-json"], "jsonRecursiveSort": false, "jsonSortOrder": "{\"/.*/\": \"lexical\"}" }
-
.prettierrc.js
:module.exports = { plugins: ['prettier-plugin-sort-json'], jsonRecursiveSort: false, jsonSortOrder: JSON.stringify({ [/.*/]: 'lexical' }), };
Sort JSON objects recursively, including all nested objects. This also sorts objects within JSON arrays.
Default | CLI | Configuration |
---|---|---|
false |
--json-recursive-sort |
jsonRecursiveSort: <bool> |
Use a custom sort order. This is specified as a JSON string containing a set of sorting rules.
Default | CLI | Configuration |
---|---|---|
"" |
--json-sort-order '<string>' |
jsonSortOrder: <string> |
This JSON string is an ordered set of sorting rules. Each entry is one sorting rule, where they key of the sorting rule defines a group of keys in the object being sorted, and the value of the sorting rule defines the sorting algorithm to use within that group of keys. That is, a rule is structured like this: [definition of sorting group]: [sorting algorithm within that group]
Each sorting group is defined either by an exact string, or by a regular expression. For example, the group A
would include just the key A
, and the group /.*/
would include all keys.
Note
Regular expression sorting groups must start with /
and end with /
, optionally followed by any supported regular expression flag (supported flags are i
, m
, s
, and u
, see here for details on how they work).
The order of the rules determines the order of the groups; for example, keys in the first group are first, those in the second group come next, etc. Keys that would qualify for multiple sorting groups are always placed in the first. Keys that are not in any sorting group are treated as being in an implied last group, with the default lexical
sorting algorithm.
Here is an example of a custom sort order string:
'{ "placeThisFirst": null, "/^\\\\d+/": "numeric", "/.*/": "caseInsensitiveLexical" }'
This string has three rules. Here is what they each mean:
-
"placeThisFirst": null
The group is
placeThisFirst
, which is not a regular expression (no leading or trailing forward slash), so it's interpreted as an exact string. This is the first rule, so the keyplaceThisFirst
will be first in the sort order.No sorting algorithm is specified in this rule (the value is
null
) so the defaultlexical
sort would be used to sort keys in this group. Except in this case the sorting algorithm is irrelevant because only one key can be in this group. -
"/^\\\\d+/": "numeric"
The group in this case is a regular expression that matches keys that start with a number. This is the second rule, so keys starting with a number will come second after
placeThisFirst
.The regular expression is double-escaped because it's a string within a stringified JSON object; the real regular expression this represents is
/^\d+/
(see Escaping for more details).The sorting algorithm is
numeric
, so these keys will be sorted numerically (in ascending order). -
"/.*/": "caseInsensitiveLexical"
The group
/.*/
matches all other keys. These keys will be sorted third, afterplaceThisFirst
and after keys starting with a number.The sorting algorithm here is
caseInsensitiveLexical
, so keys in this group will be sorted lexically ignoring case.
Here are some example JSON objects that would match these rules, with inline comments to explain:
Example Sorted JSON file #1:
Example Sorted JSON File #2:
This example only has keys that match the second sorting rule.
{
// The keys are sorted in ascending order.
// Values are ignored by all sorting rules. Only keys are sorted.
"1": 10,
"2": 9,
"3": 8,
}
Each jsonSortOrder
value represents the sorting algorithm to use within that category. If the value is null
, the default sorting algorithm lexical
is used. Here are the supported sorting algorithms:
Sorting Algorithm | Description |
---|---|
lexical |
Sort lexically (i.e. lexicographically). This is the default. |
numeric |
For keys that are prefixed with a number, sort by that number in ascending order. Otherwise sort lexically. |
reverseLexical |
Reverse-order lexical sort. |
reverseNumeric |
Reverse-order numeric sort. |
caseInsensitiveLexical |
Case-insensitive lexical sort. |
caseInsensitiveNumeric |
Case-insensitive numeric sort. |
caseInsensitiveReverseLexical |
Case-insensitive reverse-order lexical sort. |
caseInsensitiveReverseNumeric |
Case-insensitive reverse-order numeric sort. |
none |
Do not sort. |
A stringified JSON object is a strange configuration format. This format was chosen to work around a limitation of Prettier plugins; object configuration values for plugins are not supported, but strings are, so we put an object in a string. This has downsides though, especially if the string includes special characters.
Special characters (such as backslashes) in string literals need to be escaped by a backslash. This is commonplace in string representations of regular expressions, which often include the backslash special character. For example, try running /^\d+/.toString()
in a console, and you'll see it prints out "/^\\d+/"
.
When this string is included as the key of a stringified JSON object, all double-quotes and backslashes need to be escaped again. That's why a single backslash needed to be represented by four backslashes in the earlier example. If this string is used in a JSON file (e.g. in package.json
or .prettierrc.json
) it gets even worse because the string itself needs to use double-quotes, requiring even more escaping of all double-quotes used inside the string:
"{ \"placeThisFirst\": null, \"/\\\\d+/\": \"numeric\", \"/.+/\": \"caseInsensitiveLexical\" }"
If you're using a JavaScript Prettier configuration file, all of this escaping can be avoided by using JSON.stringify
to create the jsonSortOrder
string from an object with RegExp literal keys. For example, you could create the earlier example JSON sort order string like this:
{
jsonSortOrder: JSON.stringify({
placeThisFirst: null,
[/^\d+/]: 'numeric',
[/.*/]: 'caseInsensitiveLexical',
}),
}
This makes the configuration much easier to read and write. This approach is strongly recommended, if the configuration format you're using allows it.
This plugin can be used on specific files using Prettier configuration overrides. By configuring this plugin in an override, you can control which files it is applied to. Overrides can also allow using different configuration for different files (e.g. different sort order)
For example, lets say you had the following requirements:
- No sorting of JSON by default
- Shallow (non-recursive) sort JSON in the
json/
directory - Do not sort the file
json/unsorted.json
- Recursively sort
recursively-sorted.json
You could do that with this .prettierrc.json
file:
{
"overrides": [
{
"excludeFiles": ["./json/unsorted.json"],
"files": ["./json/**"],
"options": {
"plugins": ["prettier-plugin-sort-json"]
}
},
{
"files": ["./json/recursive-sorted.json"],
"options": {
"jsonRecursiveSort": true
}
}
]
}
See CONTRIBUTING.md