Enforce or disallow spaces inside of curly braces in JSX attributes and expressions (react/jsx-curly-spacing
)
🔧 This rule is automatically fixable by the --fix
CLI option.
While formatting preferences are very personal, a number of style guides require or disallow spaces between curly braces.
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
Examples of incorrect code for this rule, when configured with { "when": "never" }
:
<Hello name={ firstname } />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
Examples of correct code for this rule:
<Hello name={firstname} />;
<Hello name={{ firstname: 'John', lastname: 'Doe' }} />;
<Hello name={
firstname
} />;
<Hello>{firstname}</Hello>;
<Hello>{ firstname }</Hello>;
<Hello>{
firstname
}</Hello>;
Examples of incorrect code for this rule, when configured with { "when": "never", "children": true }
:
<Hello name={ firstname } />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
<Hello>{ firstname }</Hello>;
Examples of correct code for this rule:
<Hello name={firstname} />;
<Hello name={{ firstname: 'John', lastname: 'Doe' }} />;
<Hello name={
firstname
} />;
<Hello>{firstname}</Hello>;
<Hello>{
firstname
}</Hello>;
Examples of incorrect code for this rule, when configured with { "when": "always" }
:
<Hello name={firstname} />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
Examples of correct code for this rule:
<Hello name={ firstname } />;
<Hello name={ {firstname: 'John', lastname: 'Doe'} } />;
<Hello name={
firstname
} />;
<Hello>{ firstname }</Hello>;
<Hello>{firstname}</Hello>;
<Hello>{
firstname
}</Hello>;
Examples of incorrect code for this rule, when configured with { "when": "always", "children": true }
:
<Hello name={firstname} />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
<Hello>{firstname}</Hello>;
Examples of correct code for this rule:
<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}]
Examples of incorrect code for this rule, when configured with "never"
and "allowMultiline": false
:
<Hello name={ firstname } />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
<Hello name={
firstname
} />;
Examples of correct code for this rule:
<Hello name={firstname} />;
<Hello name={{ firstname: 'John', lastname: 'Doe' }} />;
<Hello>{firstname}</Hello>;
<Hello>{ firstname }</Hello>;
<Hello>{
firstname
}</Hello>;
Examples of incorrect code for this rule, when configured with "always"
and "allowMultiline": false
:
<Hello name={firstname} />;
<Hello name={ firstname} />;
<Hello name={firstname } />;
<Hello name={
firstname
} />;
Examples of correct code for this rule:
<Hello name={ firstname } />;
<Hello name={ {firstname: 'John', lastname: 'Doe'} } />;
<Hello>{firstname}</Hello>;
<Hello>{ firstname }</Hello>;
<Hello>{
firstname
}</Hello>;
Examples of incorrect code for this rule, when configured with { "when": "never", "attributes": { "allowMultiline": false }, "children": true }
:
<Hello name={ firstname } />;
<Hello name={
firstname
} />;
<Hello>{ firstname }</Hello>;
Examples of correct code for this rule:
<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.
Examples of correct code for this rule, when configured with "always"
and { "objectLiterals": "never" }
:
<App blah={ 3 } foo={{ bar: true, baz: true }} />;
Examples of correct code for this rule, when configured with "never"
and { "objectLiterals": "always" }
:
<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.