Maybe
yes
proptypes
eslint
node -v: v6.5.0npm -v:5.5.1yarn --version (if you use Yarn): 0.18.1npm ls react-scripts (if you haven鈥檛 ejected): [email protected] Then, specify:
npm startI'd expect to get warnings about not having proptypes
No warnings
Create React App never warned about missing PropTypes. You might be thinking about this ESLint rule: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/prop-types.md.
We don't intend to enable it because many people are starting to use Flow for static type analysis instead of runtime PropTypes. You can, however, eject and enable it if you'd like.
Most helpful comment
Create React App never warned about missing PropTypes. You might be thinking about this ESLint rule: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/prop-types.md.
We don't intend to enable it because many people are starting to use Flow for static type analysis instead of runtime PropTypes. You can, however, eject and enable it if you'd like.