Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update eslint #286

Merged
merged 2 commits into from
Jan 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
* [update eslint](https://github.com/iambumblehead/esmock/pull/276) disallow trailing whitespace
* [add typescript example](https://github.com/iambumblehead/esmock/pull/278) to README
* [update esmock to correctly](https://github.com/iambumblehead/esmock/pull/282) mock builtins imported with `await import` thanks @btakita
* [move typescript example from README](https://github.com/iambumblehead/esmock/pull/283) to wiki
* [move typescript example from README](https://github.com/iambumblehead/esmock/pull/285) to wiki
* [update eslint package](https://github.com/iambumblehead/esmock/pull/286) to resolve failing lint command
* 2.6.0 _Nov.07.2023_
* [typings: make MockFunction generic,](https://github.com/iambumblehead/esmock/pull/267) thanks @uwinkelvos
* 2.5.9 _Nov.01.2023_
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@
"resolvewithplus": "^2.1.3"
},
"devDependencies": {
"c8": "^8.0.1",
"eslint": "^8.46.0",
"c8": "^9.1.0",
"eslint": "^8.56.0",
"eslint-plugin-markdown": "^3.0.1",
"@typescript-eslint/parser": "^6.3.0",
"@typescript-eslint/eslint-plugin": "^6.3.0"
"@typescript-eslint/parser": "^6.18.1",
"@typescript-eslint/eslint-plugin": "^6.18.1"
},
"scripts": {
"test:install": "cd tests && npm run install:all",
Expand Down
Loading