Enforce or disallow spaces inside of curly braces in JSX attributes and expressions. (react/jsx-curly-spacing)
While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces.
Fixable: This rule is automatically fixable using the --fix
flag on the command line.
This rule aims to maintain consistency around the spacing inside of JSX attributes and expressions inside element children.
It either requires or disallows spaces between those braces and the values inside of them.
There are two main options for the rule:
{"when": "always"}
enforces a space inside of curly braces{"when": "never"}
disallows spaces inside of curly braces (default)
There are also two properties that allow specifying how the rule should work with the attributes (attributes
) and the expressions (children
). The possible values are:
true
enables checking for the spacing using the options (default forattributes
), e.g.{"attributes": false}
disables checking the attributesfalse
disables checking for the spacing (default forchildren
, for backward compatibility), e.g.{"children": true}
enables checking the expressions- an object containing options that override the global options, e.g.
{"when": "always", "children": {"when": "never"}}
enforces a space inside attributes, but disallows spaces inside expressions
When {"when": "never"}
is set, the following patterns are considered warnings:
<Hello name={ firstname } />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
The following patterns are not warnings:
<Hello name={firstname} />;
<Hello name={{ firstname: 'John', lastname: 'Doe' }} />;
<Hello name={
firstname
} />;
<Hello>{firstname}</Hello>;
<Hello>{ firstname }</Hello>;
<Hello>{
firstname
}</Hello>;
When {"when": "never", "children": true}
is set, the following patterns are considered warnings:
<Hello name={ firstname } />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
<Hello>{ firstname }</Hello>;
The following patterns are not warnings:
<Hello name={firstname} />;
<Hello name={{ firstname: 'John', lastname: 'Doe' }} />;
<Hello name={
firstname
} />;
<Hello>{firstname}</Hello>;
<Hello>{
firstname
}</Hello>;
When {"when": "always"}
is set, the following patterns are considered warnings:
<Hello name={firstname} />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
The following patterns are not warnings:
<Hello name={ firstname } />;
<Hello name={ {firstname: 'John', lastname: 'Doe'} } />;
<Hello name={
firstname
} />;
<Hello>{ firstname }</Hello>;
<Hello>{firstname}</Hello>;
<Hello>{
firstname
}</Hello>;
When {"when": "always", "children": true}
is set, the following patterns are considered warnings:
<Hello name={firstname} />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
<Hello>{firstname}</Hello>;
The following patterns are not warnings:
<Hello name={ firstname } />;
<Hello name={ {firstname: 'John', lastname: 'Doe'} } />;
<Hello name={
firstname
} />;
<Hello>{ firstname }</Hello>;
<Hello>{
firstname
}</Hello>;
By default, braces spanning multiple lines are allowed with either setting. If you want to disallow them you can specify an additional allowMultiline
property with the value false
:
"react/jsx-curly-spacing": [2, {"when": "never", "allowMultiline": false}]
When "never"
is used and allowMultiline
is false
, the following patterns are considered warnings:
<Hello name={ firstname } />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
<Hello name={
firstname
} />;
The following patterns are not warnings:
<Hello name={firstname} />;
<Hello name={{ firstname: 'John', lastname: 'Doe' }} />;
<Hello>{firstname}</Hello>;
<Hello>{ firstname }</Hello>;
<Hello>{
firstname
}</Hello>;
When "always"
is used and allowMultiline
is false
, the following patterns are considered warnings:
<Hello name={firstname} />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
<Hello name={
firstname
} />;
The following patterns are not warnings:
<Hello name={ firstname } />;
<Hello name={ {firstname: 'John', lastname: 'Doe'} } />;
<Hello>{firstname}</Hello>;
<Hello>{ firstname }</Hello>;
<Hello>{
firstname
}</Hello>;
When {"when": "never", "attributes": {"allowMultiline": false}, "children": true}
is set, the following patterns are considered warnings:
<Hello name={ firstname } />;
<Hello name={
firstname
} />;
<Hello>{ firstname }</Hello>;
The following patterns are not warnings:
<Hello name={firstname} />;
<Hello>{firstname}</Hello>;
<Hello>{
firstname
}</Hello>;
You can specify an additional spacing
property that is an object with the following possible values:
"react/jsx-curly-spacing": [2, {"when": "always", "spacing": {
"objectLiterals": "never"
}}]
objectLiterals
: This controls different spacing requirements when the value inside the jsx curly braces is an object literal.
All spacing options accept either the string "always"
or the string "never"
. Note that the default value for all "spacing" options matches the first "always"/"never" option provided.
When "always"
is used but objectLiterals
is "never"
, the following pattern is not considered a warning:
<App blah={ 3 } foo={{ bar: true, baz: true }} />;
When "never"
is used and objectLiterals
is "always"
, the following pattern is not considered a warning:
<App blah={3} foo={ {bar: true, baz: true} } />;
Please note that spacing of the object literal curly braces themselves is controlled by the built-in object-curly-spacing
rule.
To preserve backward compatibility, two additional options are supported:
"react/jsx-curly-spacing": [2, "always"]
which is a shorthand for
"react/jsx-curly-spacing": [2, {"when": "always"}]
and
"react/jsx-curly-spacing": [2, "never"]
which is a shorthand for
"react/jsx-curly-spacing": [2, {"when": "never"}]
When using the shorthand options, only attributes will be checked. To specify other options, use another argument:
"react/jsx-curly-spacing": [2, "never", {
"allowMultiline": false,
"spacing": {"objectLiterals": "always"}
}]
You can turn this rule off if you are not concerned with the consistency around the spacing inside of JSX attributes or expressions.