From 27ea9697629fa03c58ab77919b186affd32b33b9 Mon Sep 17 00:00:00 2001 From: Stephen Niedzielski Date: Fri, 5 Oct 2018 10:22:11 -0600 Subject: [PATCH] Hygiene: limit ESLint inheritance The project ESLint configuration unintentionally inherited unwanted configuration from MediaWiki, which allows global jQuery usage. Cap the project's ESLint hierarchy at the project root. Change-Id: Iceda39a4eeb492446b952f597af0f153cf345206 --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 09fb2d2b3..f866cbdf1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,4 +1,5 @@ { + "root": true, "extends": "wikimedia", "env": { "browser": true,