Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelGirodon committed Jun 18, 2024
1 parent 1ec2ca6 commit 0b54e63
Show file tree
Hide file tree
Showing 6 changed files with 507 additions and 293 deletions.
10 changes: 0 additions & 10 deletions .eslintrc.yml

This file was deleted.

20 changes: 20 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import globals from "globals";
import pluginJs from "@eslint/js";

export default [
{
languageOptions: {
globals: {
...globals.node,
...globals.browser,
...globals.mocha,
},
},
},
pluginJs.configs.recommended,
{
rules: {
"no-unused-vars": ["error", { caughtErrors: "all", caughtErrorsIgnorePattern: "err" }],
},
},
];
Loading

0 comments on commit 0b54e63

Please sign in to comment.