考虑下面的组件,当组件需要时不使用
users
时,如何让 Eslint 发出警告?
类型 ItemCardProps = { 用户:数组; 编辑启用:布尔值; };
导出 const ItemFields = (道具: ItemCardProps) => { const { editEnabled } = 道具; }
看起来您想启用
react/no-unused-prop-types
在你的 eslintConfig 中
"rules": {
"react/no-unused-prop-types": "warn"
}
有关此规则用例的更多信息:https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/no-unused-prop-types.md