在Chrome控制台中,我看到以下警告:
Module Warning (from /Users/me/sites/site/node_modules/react-scripts/node_modules/eslint-loader/index.js):
Line 365:16: Using propTypes from another component is not safe because they may be removed in production builds react/forbid-foreign-prop-types
Line 365:45: Using propTypes from another component is not safe because they may be removed in production builds react/forbid-foreign-prop-types
根据文档,我尝试通过将以下内容添加到引起警告的文件顶部来禁用此警告:
/* eslint-disable no-underscore-dangle, forbid-foreign-prop-types */
这不会使警告静音。我在做什么错了?
谢谢
答案 0 :(得分:1)
想通了:
/* eslint-disable react/forbid-foreign-prop-types */