From 64ede43dec671a5dba9e7195efb9d0fc35eac0f0 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Sun, 8 Apr 2018 11:58:16 +0200 Subject: [PATCH] Added custom rule for object-shorthand and comma-dangle. --- seasoned_api/.eslintrc.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/seasoned_api/.eslintrc.json b/seasoned_api/.eslintrc.json index d7e47e6..e0ed694 100644 --- a/seasoned_api/.eslintrc.json +++ b/seasoned_api/.eslintrc.json @@ -7,6 +7,8 @@ "prefer-destructuring": 0, "camelcase": 0, "import/no-unresolved": 0, - "import/no-extraneous-dependencies": 0 + "import/no-extraneous-dependencies": 0, + "object-shorthand": 0, + "comma-dangle": 0 } }