Commit d2301501 authored by Robert Knight's avatar Robert Knight

Disable prop-types check in ESLint config

Prop-types checking has been replaced by static checking done by
TypeScript.
parent dcfd018a
......@@ -9,6 +9,9 @@
// https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html#eslint
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off"
"react/react-in-jsx-scope": "off",
// Replaced by TypeScript's static checking.
"react/prop-types": "off"
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment