Skip to content

Commit

Permalink
[Dev Deps] update eslint, @ljharb/eslint-config, browserify, `t…
Browse files Browse the repository at this point in the history
…ape`
  • Loading branch information
ljharb committed Dec 15, 2019
1 parent edb1cc9 commit 93310bc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .eslintrc
Expand Up @@ -3,6 +3,11 @@

"extends": "@ljharb",

"env": {
"browser": true,
"node": true,
},

"globals": {
"globalThis": false,
},
Expand Down
1 change: 0 additions & 1 deletion implementation.js
@@ -1,4 +1,3 @@
/* globals self, window, global */
/* eslint no-negated-condition: 0, no-new-func: 0 */

'use strict';
Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -46,13 +46,13 @@
},
"devDependencies": {
"@es-shims/api": "^2.1.2",
"@ljharb/eslint-config": "^13.1.1",
"browserify": "^16.2.3",
"@ljharb/eslint-config": "^15.0.2",
"browserify": "^16.5.0",
"covert": "^1.1.1",
"eslint": "^5.16.0",
"eslint": "^6.7.2",
"for-each": "^0.3.3",
"is": "^3.3.0",
"tape": "^4.10.2"
"tape": "^4.11.0"
},
"testling": {
"files": "test/index.js",
Expand Down
2 changes: 1 addition & 1 deletion test/tests.js
Expand Up @@ -30,7 +30,7 @@ module.exports = function (theGlobal, t) {
/* eslint no-eval: 1 */
eval(key + ' = semaphore;');
st.equal(theGlobal[key], semaphore, 'global variable ends up on the global object');
delete theGlobal[key];
delete theGlobal[key]; // eslint-disable-line no-param-reassign
st.end();
});
};

0 comments on commit 93310bc

Please sign in to comment.