From d10d4ca7676f089838e5804a482bca1288803844 Mon Sep 17 00:00:00 2001 From: Joe Biellik Date: Mon, 22 Jun 2020 16:58:33 +0100 Subject: [PATCH] Improve linting --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 6395f90..678ee77 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -13,6 +13,7 @@ "semi": ["error", "always"], "no-trailing-spaces": ["warn"], "comma-dangle": ["error"], - "no-console": ["warn", { "allow": ["warn", "error"] }] + "no-console": ["warn", { "allow": ["warn", "error"] }], + "space-before-function-paren": ["error", "never"] } }