【Typescript】项目编译没问题,eslint检查时报错:‘xxx‘ is missing in props validation react/prop-types
【Typescript】项目编译没问题,eslint检查时报错:'xxx' is missing in props validationreact/prop-types
·
报错截图:
代码:
src/Child.tsx
type ChildProp = {
count?: number
}
const Child: React.FC<ChildProp>= ({ count }) => {
return <h3>{count}</h3>
}
export default Child;
原因是eslint
在使用了"plugin:react/recommended"
对react
检查时,会使用prop-types
规则进行检查,在项目中使用的是ts
,我们不会去引入prop-types
去声明数据类型,所以会报错。这里有两种处理方法:
方法一
对组件和props
都做类型声明
type ChildProp = {
count?: number
}
const Child: React.FC<ChildProp>= ({ count }: ChildProp) => {
return <h3>{count}</h3>
}
export default Child;
方法二
这是一劳永逸的做法。在eslint
中,会默认使用react/prop-types
检查,我们把它关掉就好了。
.eslintrc.js
"overrides": [
{
files: ["**/*.tsx"],
// react默认使用prop-types来检查类型
// 如果使用了typescript,就把这个关掉,
// 不然会报一些没有意义的错误
rules: {
"react/prop-types": "off"
}
}
]
更多推荐
已为社区贡献8条内容
所有评论(0)