From 8b43b5fe511fe0acbdea8bfda7df7f275cd4d958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Victor=20Tozatti=20Risso?= <jvtr12@inf.ufpr.br> Date: Mon, 5 Sep 2016 11:28:08 -0300 Subject: [PATCH] Add root parameter to .eslintrc.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Victor Tozatti Risso <jvtr12@inf.ufpr.br> --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 52b136d7..14152dfc 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,5 +1,6 @@ { "extends": "airbnb", + "root": true, "plugins": [ "react", "jsx-a11y", @@ -8,6 +9,6 @@ "rules": { "indent": [ "error", 4 ], "no-unused-vars": [ "error", { "args": "none" }], - "no-param-reassign": [ "off" ] + "no-param-reassign": [ "off" ] } } -- GitLab