Prettier plugin to force array elements to wrap onto new lines, even when there's only one element (if you so specify). Supports control of how many elements appear on each line. Insert leading new lines or trailing commas to manually force array wrapping.
TypeScript, JavaScript, and JSON files are officially supported (others may still work).
Please file issues in the GitHub repo and include code examples if you come across formatting errors.
Add this config to your prettierrc file:
module.exports = {
plugins: [
'prettier-plugin-multiline-arrays',
],
};
The order of your plugins array is very important, so if you have other plugins and they don't work initially, try rearranging them. For an example, check out the plugin ordering for this package's Prettier config: ./prettierrc.js
This plugin provides two new options for your Prettier config:
multilineArraysWrapThreshold
: This should be set to a single number which controls when arrays wrap. If an array has more elements than the number specified here, it will be forced to wrap. This option defaults to-1
, which indicates that no automatic wrapping will take place. Example JSON:"multilineArraysWrapThreshold": 3,
. To override this option for an individual array, precede the array with a comment like so:// prettier-multiline-arrays-next-threshold: 4
.multilineArraysLinePattern
: This should be set to a string which contains a space separated list of numbers. These numbers allow fine grained control over how many elements appear in each line. The pattern will repeat if an array has more elements than the pattern. See theExamples
section for how this works. This defaults to just1
, which indicates all array lines have just a single element. Example:"multilineArraysLinePattern": "2 1"
, which means the first line will have 2 elements, the second will have 1, the third will have 2, the fourth will have 1, and so on. If set, this option overrides Prettier's default wrapping; multiple elements on one line will not be wrapped even if they don't fit within the column count. To override this option for an array, precede the array with a comment like so:// prettier-multiline-arrays-next-line-pattern: 2 1
.
- Add a comment starting with
prettier-multiline-arrays-next-threshold:
followed by a single number to controlmultilineArraysWrapThreshold
for an array on the next line. - Add a comment starting with
prettier-multiline-arrays-next-line-pattern:
followed by a pattern of numbers to controlmultilineArraysLinePattern
for an array on the next line.
To set a comment override for all arrays in a file following the comment, change next
to set
. Like so:
prettier-multiline-arrays-set-threshold: 5
prettier-multiline-arrays-set-line-pattern: 2 1 3
To later undo a set
comment, use prettier-multiline-arrays-reset
, which resets the options to whatever you have set in prettierrc, or the default values.
The precedence of forcing wrapping goes as follows:
- Comments override all else
- Manually forced wrapping (leading new lines, trailing commas) overrides configs and defaults
- Your specific Prettier options override the defaults
- The defaults are that no extra wrapping will be forced
-
Not formatted:
// prettier-ignore export const myArray = ['a', 'b', 'c',]; // note the trailing comma which forces a wrap // prettier-ignore export const myCustomArray = [ 'a', 'b', 'c', 'd', 'e'] // note the leading new line which forces a wrap
-
Removing the
prettier-ignore
comments leads to formatting like this (with the default options):export const myArray = [ 'a', 'b', 'c', ]; // note the trailing comma which forces a wrap export const myCustomArray = [ 'a', 'b', 'c', 'd', 'e', ]; // note the leading new line which forces a wrap
-
Use comment overrides to affect wrapping:
// prettier-multiline-arrays-next-line-pattern: 2 1 export const linePatternArray = [ 'a', 'b', 'c', 'd', 'e', ]; // Even if this example had a leading new line or a trailing comma, it won't wrap because the // comment overrides that behavior. // prettier-multiline-arrays-next-threshold: 10 export const highThresholdArray = ['a', 'b', 'c', 'd', 'e']; // this array doesn't fully wrap even though it exceeded the column width because the // "next-line-pattern" comment overrides Prettier's column width wrapping // prettier-multiline-arrays-next-line-pattern: 100 export const superHighThresholdArray = [ 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', ];
Tested to be compatible with the following plugins. It is likely compatible with many others as well. This plugin must be placed in the order specified below.
prettier-plugin-toml
prettier-plugin-sort-json
prettier-plugin-packagejson
- this plugin must be placed here
prettier-plugin-organize-imports
prettier-plugin-jsdoc
(needs to be updated to v3)prettier-plugin-interpolated-html-tags
- Set the
NEW_LINE_DEBUG
environment variable to something truthy before formatting to get extra debug output when formatting. - To debug in browser dev tools, run
npm run test:debug
and open Chrome's dev tools.