Skip to content

Commit

Permalink
[Dev Deps] update eslint, @ljharb/eslint-config, @es-shims/api,…
Browse files Browse the repository at this point in the history
… `safe-publish-latest`, `tape`
  • Loading branch information
ljharb committed Dec 13, 2021
1 parent 517458c commit ea46a95
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
9 changes: 8 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@

"rules": {
"id-length": [2, { "min": 1, "max": 30 }],
"new-cap": [2, { "capIsNewExceptions": ["CreateDataProperty", "IsCallable", "RequireObjectCoercible", "ToObject"] }]
"new-cap": [2, {
"capIsNewExceptions": [
"CreateDataProperty",
"IsCallable",
"RequireObjectCoercible",
"ToObject",
]
}],
},

"overrides": [
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"prepublishOnly": "safe-publish-latest",
"pretest": "npm run --silent lint",
"test": "npm run --silent tests-only",
"posttest": "npx aud --production",
"posttest": "aud --production",
"tests-only": "nyc tape 'test/**/*.js'",
"lint": "eslint .",
"lint": "eslint --ext=js,mjs .",
"postlint": "es-shim-api --bound"
},
"repository": {
Expand All @@ -39,15 +39,15 @@
"es-abstract": "^1.19.1"
},
"devDependencies": {
"@es-shims/api": "^2.2.1",
"@ljharb/eslint-config": "^18.0.0",
"@es-shims/api": "^2.2.3",
"@ljharb/eslint-config": "^20.0.0",
"aud": "^1.1.5",
"eslint": "^7.32.0",
"eslint": "^8.4.1",
"functions-have-names": "^1.2.2",
"has-strict-mode": "^1.0.1",
"nyc": "^10.3.2",
"safe-publish-latest": "^1.1.4",
"tape": "^5.3.1"
"safe-publish-latest": "^2.0.0",
"tape": "^5.3.2"
},
"testling": {
"files": [
Expand Down
1 change: 0 additions & 1 deletion test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ module.exports = function (getDescriptors, t) {
st.end();
});

/* global Proxy */
var supportsProxy = typeof Proxy === 'function';
t.test('Proxies that return an undefined descriptor', { skip: !supportsProxy }, function (st) {
var obj = { foo: true };
Expand Down

0 comments on commit ea46a95

Please sign in to comment.