Skip to content

Commit

Permalink
Bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
eight04 committed Aug 12, 2024
1 parent 65db0fb commit 750008a
Show file tree
Hide file tree
Showing 11 changed files with 3,433 additions and 2,308 deletions.
18 changes: 0 additions & 18 deletions .eslintrc.json

This file was deleted.

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

export default [
{
ignores: ["dist-extension/*", "build", "chrome"]
},
js.configs.recommended,
{
"rules": {
"dot-notation": 2,
"max-statements-per-line": 2,
},
languageOptions: {
globals: {
...globals.browser,
// ...globals.webextensions,
}
},
},
{
files: ["test/**/*.js"],
languageOptions: {
globals: {
...globals.node,
}
}
}
];
Loading

0 comments on commit 750008a

Please sign in to comment.