disable react/prop-types lint rule, it's annoying and not needed for compenents that we don't reuse

This commit is contained in:
HF 2020-01-03 14:19:17 +01:00
parent 9d2bebfd13
commit 46f51e1d38

View File

@ -25,6 +25,7 @@
"no-bitwise": 0,
"no-plusplus" : "off",
"no-param-reassign": "off",
"no-mixed-operators":"off"
"no-mixed-operators":"off",
"react/prop-types": "off"
}
}