Skip to content

Commit

Permalink
chore(deps): update dependency eslint to v9 (#43)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency eslint to v9

* chore(deps): migrate to eslint v9

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: koyashiro <[email protected]>
  • Loading branch information
renovate[bot] and koyashiro authored Aug 19, 2024
1 parent 975a9ee commit d8e66ab
Show file tree
Hide file tree
Showing 5 changed files with 251 additions and 333 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

30 changes: 0 additions & 30 deletions .eslintrc.cjs

This file was deleted.

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

/** @type {import("eslint").Linter.Config[]} */
export default [
{ files: ["**/*.{js,mjs,cjs,ts}"] },
{ ignores: ["dist/"] },
{ languageOptions: { globals: globals.node } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
eslintConfigPrettier,
];
Loading

0 comments on commit d8e66ab

Please sign in to comment.