Sort JSON/JS arraySorts a JSON/JS array by common property or by custom function and replace the array in-place. The array can be selected (must include InstallationInstall through VS Code extensions. Search for Visual Studio Code Market Place: Sort JSON/JS array Can also be installed in VS Code: Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
What is supported?This extension contains its own parser, because
DemoSort array of objects ascending or descending by one or more properties to produce a deterministic sort result:Sort array using custom function:Manage sort modules:FeaturesSort number, string or object arraysString arrays are sorted using the lexicographic order using Intl.Collator. Number arrays are sorted based on their value. Objects are sorted based on one or more properties. The program will ask until the sort is deterministic. There is command for ascending and descending sort. Nested objects and arrays with mixed types are only supported by custom function. Custom sortCustom sort opens the sort module in another tab. The sort module must be a valid typescript module that exports a For older vscode versions: Opening the sort module in another tab only works properly if preview mode is disabled. Set Technical: Sort modules are stored in the global storage path location for this extension. This is a folder in your vs code config location. Selecting array manuallySelecting an array works well with the Serialization according to editor settingsThis extension supports a custom serialization that uses the indentation and end of line settings of the current editor. It will retain the style of quotation for object properties (none/single/double). Any custom formatting will be removed, because it often dependents on the position in the array (first vs second vs last) and there are too many variations to get it right. Instead, this extension serializes arrays similar to how ContributingIf you wish to contribute, check out the contributing guidelines. |