Prettier plugin to force array elements to wrap onto new lines, even when there's only one element. Supports control of how many elements appear on each line. Trailing commas will always force a wrap.
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. You can set the NEW_LINE_DEBUG
environment variable to something truthy to get extra debug output when formatting.
Add this config to your prettierrc file:
module.exports = {
plugins: [
// relative paths are usually required so Prettier can find the plugin
'./node_modules/prettier-plugin-multiline-arrays', // plugin added here
],
printWidth: 100,
singleQuote: true,
tabWidth: 4,
};
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 makes two new options available to 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 to1
, which indicates that all arrays with more than 1 element will wrap. Example JSON:"multilineArraysWrapThreshold": 3,
. To override this option for an 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
.multilineFunctionArguments
: Experimental: Applies all array wrapping logic to function argument lists as well.
- Add a comment starting with
prettier-multiline-arrays-next-threshold:
followed by a single number to control the wrap threshold for the following line. When an array has more elements than this number, it wraps. The default is1
, which indicates that arrays with more than 1 element will wrap. Example:// prettier-multiline-arrays-next-threshold: 5
- Add a comment starting with
prettier-multiline-arrays-next-line-pattern:
followed by a pattern of numbers to control how many elements will appear on each line for an array on the following line. Example:// prettier-elements-per-line: 2 1 3
. The default is just1
. Any given pattern will repeat endlessly. See theExamples
section below. 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 set a comment override for all arrays in a file following the comment, change next
to set
. Examples:
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.
-
Not formatted:
// prettier-ignore export const myArray = ['a', 'b', 'c']; // prettier-ignore export const myCustomArray = ['a', 'b', 'c', 'd', 'e']
-
Removing the
prettier-ignore
comments leads to formatting like this (with the default options):export const myArray = [ 'a', 'b', 'c', ]; export const myCustomArray = [ 'a', 'b', 'c', 'd', 'e', ];
-
Use comment overrides to affect wrapping:
// prettier-multiline-arrays-next-line-pattern: 2 1 export const linePatternArray = [ 'a', 'b', 'c', 'd', 'e', ]; // prettier-multiline-arrays-next-threshold: 10 export const highThresholdArray = ['a', 'b', 'c', 'd', 'e']; // this example wraps because a trailing comma was included, which forces wrapping despite // the high threshold comment. // prettier-multiline-arrays-next-threshold: 10 export const highThresholdWithTrailingComma = [ 'a', 'b', 'c', 'd', 'e', ];
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-sort-json
prettier-plugin-packagejson
- insert this plugin here
prettier-plugin-organize-imports
prettier-plugin-jsdoc