This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Description
refer to https://facebook.github.io/react/docs/jsx-gotchas.html
const test = 'test';
<div>{'First · Second'}</div>
<div>{test}</div>
I would like find the rule to do like these:
(add space before/after curly braces)
const test = 'test';
<div>{ 'First · Second' }</div>
<div>{ test }</div>
however, I haven't found that yet,
maybe I've missed keywords.
Does jscs has this relevant rules ?