fxbois / web-mode

web template editing mode for emacs
https://web-mode.org
GNU General Public License v3.0
1.64k stars 260 forks source link

JSX props indentation incorrect #1193

Closed vikigenius closed 1 year ago

vikigenius commented 3 years ago
<Input
   placeholder={placeholder}
   {...inputStyleProps}
   { ...getInputProps } // Pressing Enter here does not indent
/>

Trying to add a new prop does not indent.

Things work correctly if I do:

<Input
   placeholder={placeholder}
   {...inputStyleProps}
   { ...getInputProps } // Pressing Enter here does indent to 2 spaces correctly
>
</Input>

All of my indentation variables are set to 2

fxbois commented 1 year ago

I've pushed a fix