Skip to content

Commit

Permalink
chore: upgrade to eslint@9 (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
redonkulus committed Apr 8, 2024
1 parent 7ddb015 commit b9d9537
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 160 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

16 changes: 16 additions & 0 deletions eslint.config.mjs
@@ -0,0 +1,16 @@
import js from '@eslint/js';
import globals from 'globals';

export default [
js.configs.recommended,
{
languageOptions: {
ecmaVersion: 2022,
globals: {
...globals.jest,
...globals.node,
},
},
ignores: ['artifacts', 'builds', 'node_modules'],
},
];

0 comments on commit b9d9537

Please sign in to comment.