From 162e16afdbb99036bb232619c66a95cea50614a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?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 2197bf35ccf7be..fec8179aa31f14 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