Skip to content

Commit

Permalink
Eslint update breaks config files
Browse files Browse the repository at this point in the history
  • Loading branch information
videlais committed May 16, 2024
1 parent 2610769 commit f93fe3a
Show file tree
Hide file tree
Showing 7 changed files with 285 additions and 1,689 deletions.
19 changes: 0 additions & 19 deletions .eslintrc.json

This file was deleted.

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

export default [
{
languageOptions: {
globals: {
...globals.browser,
...globals.node,
...globals.jest
}
},
plugins: {
jest: jest
}
},
pluginJs.configs.recommended,
];
Loading

0 comments on commit f93fe3a

Please sign in to comment.