To improving a git-history, we approve a guide changes regarding to ending braces style on multi-line JSX tags. Ending braces should always require a new line.
Scope:
- adjust guide examples and move from this approach:
<MyAwesomeComponent
baz
foo={bar}>
<ListOfThings />
</MyAwesomeComponent>
to this one:
<MyAwesomeComponent
baz
foo={bar}
>
<ListOfThings />
</MyAwesomeComponent>
- adjust corresponded eslint rule
To improving a git-history, we approve a guide changes regarding to ending braces style on multi-line JSX tags. Ending braces should always require a new line.
Scope:
to this one: