跳至内容

react/no-unknown-property 限制

🚧 自动修复仍在开发中。

其作用

禁止使用未知的 DOM 属性。

为什么这么糟糕?

可以使用无效且未知的属性名称。

示例

jsx
// Unknown properties
const Hello = <div class="hello">Hello World</div>;
const Alphabet = <div abc="something">Alphabet</div>;

// Invalid aria-* attribute
const IconButton = <div aria-foo="bar" />;

参考

根据 MIT 许可证发布。