Skip to content

Commit

Permalink
Update globals config to use 'readonly' instead of deprecated 'false'…
Browse files Browse the repository at this point in the history
…, following github/eslint/eslint#11384.
  • Loading branch information
davegregg committed Mar 31, 2019
1 parent f7d50e0 commit a8f4759
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eslintrc.json
Expand Up @@ -20,9 +20,9 @@
],

"globals": {
"document": false,
"navigator": false,
"window": false
"document": "readonly",
"navigator": "readonly",
"window": "readonly"
},

"rules": {
Expand Down

0 comments on commit a8f4759

Please sign in to comment.