Closed
Description
After updating from 6.3.0 to 6.4.0 this code generates error:
react/jsx-indent Expected indentation of 8 space characters but found 6
But if I move underlined div, own eslint indent rule starts showing error:
indent Expected indentation of 6 spaces but found 8
Rules config:
'indent': [2, 2, { 'SwitchCase': 1, 'VariableDeclarator': 2 }],
'react/jsx-indent': [2, 2],
'react/jsx-indent-props': [0, 2],