From 2abcee1a9c7622e48642889fd2f4278fc94d92a8 Mon Sep 17 00:00:00 2001 From: Tomas Chmelevskij Date: Fri, 19 Aug 2022 22:17:02 +0100 Subject: [PATCH] Add `no-extra-semi` to match what's in sonarcloud --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 428fdcbcdd..b16c1d5cc6 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -15,6 +15,7 @@ module.exports = { "no-trailing-spaces": "error", "eol-last": "error", semi: "error", + "no-extra-semi": "error", "comma-dangle": ["error", "always-multiline"], "no-var": "error", "prefer-template": "error",