# Enforce JSX indentation (`react/jsx-indent`)
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
This option validates a specific indentation style for JSX.
Note: The fixer will fix whitespace and tabs indentation.
## Rule Details
This rule is aimed to enforce consistent indentation style. The default style is `4 spaces`.
Examples of **incorrect** code for this rule:
```jsx
// 2 spaces indentation
// no indentation
// 1 tab indentation
```
## Rule Options
It takes an option as the second parameter which can be `"tab"` for tab-based indentation or a positive number for space indentations.
To enable checking the indentation of attributes or add indentation to logical expressions, use the third parameter to turn on the `checkAttributes` (default is false) and `indentLogicalExpressions` (default is false) respectively.
```js
...
"react/jsx-indent": [, 'tab'|, {checkAttributes: , indentLogicalExpressions: }]
...
```
Examples of **incorrect** code for this rule:
```jsx
// 2 spaces indentation
// [2, 2]
// tab indentation
// [2, 'tab']
// [2, 2, {checkAttributes: true}]
hi
}
/>
}>
// [2, 2, {indentLogicalExpressions: true}]
{condition && (
)}
```
Examples of **correct** code for this rule:
```jsx
// 2 spaces indentation
// [2, 2]
// tab indentation
// [2, 'tab']
// no indentation
// [2, 0]
// [2, 2, {checkAttributes: false}]
hi
}
/>
}>
// [2, 2, {indentLogicalExpressions: true}]
{condition && (
)}
```
## When Not To Use It
If you are not using JSX then you can disable this rule.