According to the documentation for eslint-plugin-react, react version should not use the package.json-like version syntax but instead just the major and minor version without any special symbols.
The version currently in .eslintrc.json does remove the warning but I discovered that at least some rules stop working if ^16.3.0 is used instead of 16.3. This also makes the stateless script in @creuna/react-scripts unusable because it uses eslint-plugin-react internally.
According to the documentation for
eslint-plugin-react
, react version should not use the package.json-like version syntax but instead just the major and minor version without any special symbols.The version currently in
.eslintrc.json
does remove the warning but I discovered that at least some rules stop working if^16.3.0
is used instead of16.3
. This also makes thestateless
script in@creuna/react-scripts
unusable because it useseslint-plugin-react
internally.