From 50c3ec5cb22f2786400a5c5707de1971662c825c Mon Sep 17 00:00:00 2001 From: Tomas Korcak Date: Sat, 15 Aug 2015 02:04:20 +0200 Subject: [PATCH] Enable warnings for no-alert, no-console, no-use-before-define --- .eslintrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.eslintrc b/.eslintrc index c90e5fc..30bf6d6 100644 --- a/.eslintrc +++ b/.eslintrc @@ -3,8 +3,8 @@ "rules": { "comma-dangle": 0, "func-names": 0, - "no-alert": 0, - "no-console": 0, - "no-use-before-define": 0 + "no-alert": 1, + "no-console": 1, + "no-use-before-define": 1 } } \ No newline at end of file