0

有一个react代码库,我想用以下规则美化它:

  • 用一个值完成道具速记。shorthand => shorthand={true}

当前的:

<Table celled unstackable />

预期的:

<Table celled={true} unstackable={true} />
4

1 回答 1

1

这是一个eslint 规则

只需将其添加到您的eslintrc rules即可禁用它;

react/jsx-boolean-value: off
于 2020-10-23T11:07:50.163 回答