From 2652ece83fa7fcc173addba25312751cae83326f Mon Sep 17 00:00:00 2001 From: ccd0 Date: Wed, 20 Apr 2016 03:04:45 -0700 Subject: [PATCH] Fix globals incorrectly set to writable. --- src/meta/jshint.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/meta/jshint.json b/src/meta/jshint.json index a16fb5325..46db38fc0 100644 --- a/src/meta/jshint.json +++ b/src/meta/jshint.json @@ -13,13 +13,13 @@ "-W083": true, "-W093": true, "globals": { - "MediaError": true, - "Set": true, - "GM_info": true, - "cloneInto": true, - "unsafeWindow": true, - "chrome": true<%= - meta.grants.map(x => `,\n "${x}": true`).join('') + "MediaError": false, + "Set": false, + "GM_info": false, + "cloneInto": false, + "unsafeWindow": false, + "chrome": false<%= + meta.grants.map(x => `,\n "${x}": false`).join('') %><%= read('/tmp/declaration.js').match(/^var (.*);/)[1].split(', ').map(x => `,\n "${x}": true`).join('') %><%=