Skip to content

Commit

Permalink
Upgrade ESLint to 9.x (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaput authored Dec 4, 2024
1 parent 3ec5b5f commit 504a63e
Show file tree
Hide file tree
Showing 4 changed files with 392 additions and 326 deletions.
5 changes: 0 additions & 5 deletions .eslintrc.json

This file was deleted.

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

export default ts.config(
{
ignores: ["dist/*", "out/*"],
},
js.configs.recommended,
ts.configs.recommended,
prettier,
{
languageOptions: {
globals: globals.node,
},
},
);
Loading

0 comments on commit 504a63e

Please sign in to comment.