From f76c2c4da3566e77907cceeb20e76060f08c7051 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 17 Nov 2019 18:02:26 -0500 Subject: [PATCH] prevent body error with eslint constructors --- .eslintrc.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 3a31097..f1f15b9 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -36,6 +36,8 @@ "camelcase": "off", "indent": "warn", "object-curly-newline": "off", - "import/prefer-default-export": "off" + "import/prefer-default-export": "off", + "no-useless-constructor": "off", + "@typescript-eslint/no-useless-constructor": 2 } } \ No newline at end of file