Skip to content

Commit

Permalink
chore: up dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub authored and dhoulb committed Jan 30, 2021
1 parent 9561c87 commit 4e5e299
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"url": "git://github.com/dhoulb/blork.git"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.5"
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"scripts": {
"fix": "eslint --fix ./",
Expand Down
2 changes: 1 addition & 1 deletion test/checkers/checkers.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ describe("checkers", () => {
expect(mockCheck(circular, "circular")).toBe(undefined);
expect(mockCheck([], "array")).toBe(undefined);
expect(mockCheck([], "arr")).toBe(undefined);
expect(mockCheck({ "0": "abc", length: 1 }, "arraylike")).toBe(undefined);
expect(mockCheck({ "0": "abc", length: 1 }, "arraylike")).toBe(undefined); // prettier-ignore
expect(mockCheck({ length: 0 }, "arguments")).toBe(undefined);
expect(mockCheck({ length: 0 }, "args")).toBe(undefined);
expect(mockCheck(new Date(), "date")).toBe(undefined);
Expand Down

0 comments on commit 4e5e299

Please sign in to comment.