【发布时间】:2021-02-06 10:38:15
【问题描述】:
有一个react 代码库,我想用以下规则美化它:
- 用一个值完成道具速记。
shorthand => shorthand={true}
当前:
<Table celled unstackable />
预期:
<Table celled={true} unstackable={true} />
【问题讨论】:
标签: reactjs prettier prettier-eslint
有一个react 代码库,我想用以下规则美化它:
shorthand => shorthand={true}
当前:
<Table celled unstackable />
预期:
<Table celled={true} unstackable={true} />
【问题讨论】:
标签: reactjs prettier prettier-eslint
【讨论】:
'react/jsx-boolean-value': ['error', 'always'],