From 46f51e1d383cc601003f9598e2e7239c395535d9 Mon Sep 17 00:00:00 2001 From: HF Date: Fri, 3 Jan 2020 14:19:17 +0100 Subject: [PATCH] disable react/prop-types lint rule, it's annoying and not needed for compenents that we don't reuse --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 083af658..ed1699f5 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -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" } }