From 2b52b15a770461bd3dab331bd9b27da8fcffc315 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C3=ABl=20Zasso?= Date: Fri, 15 Jan 2016 09:50:44 +0100 Subject: [PATCH] tools: enable no-extra-semi rule in eslint PR-URL: https://github.com/nodejs/node/pull/2205 Reviewed-By: Colin Ihrig Reviewed-By: Roman Reiss --- .eslintrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc b/.eslintrc index f70fe2e..8d9988a 100644 --- a/.eslintrc +++ b/.eslintrc @@ -25,6 +25,8 @@ rules: no-dupe-keys: 2 ## check duplicate switch-case no-duplicate-case: 2 + ## disallow superfluous semicolons + no-extra-semi: 2 ## disallow assignment of exceptional params no-ex-assign: 2 ## disallow unreachable code -- 2.7.4