From a8f47590a386597a3b4b6041cb7868ac5e6161e3 Mon Sep 17 00:00:00 2001 From: davegregg Date: Sun, 31 Mar 2019 12:05:41 -0400 Subject: [PATCH] Update globals config to use 'readonly' instead of deprecated 'false', following github/eslint/eslint#11384. --- eslintrc.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eslintrc.json b/eslintrc.json index 52d9ec66..ab6ddff2 100644 --- a/eslintrc.json +++ b/eslintrc.json @@ -20,9 +20,9 @@ ], "globals": { - "document": false, - "navigator": false, - "window": false + "document": "readonly", + "navigator": "readonly", + "window": "readonly" }, "rules": {