From c56a35fd11f7bdaf072f6036311362e3af3a4f63 Mon Sep 17 00:00:00 2001 From: Isaac Date: Mon, 31 May 2021 23:53:48 +0100 Subject: [PATCH] chore: add more eslint rules - Added `func-call-spacing` - Added `rest-spread-spacing` --- .eslintrc.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 7fb875a..6e8a582 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -72,6 +72,10 @@ module.exports = { 'eqeqeq': [ 'error' ], + 'func-call-spacing': [ + 'error', + 'never' + ], 'indent': [ 'error', 'tab' @@ -159,6 +163,10 @@ module.exports = { 'error', 'single' ], + 'rest-spread-spacing': [ + 'error', + 'never' + ], 'semi': [ 'error', 'always'