Skip to content

Commit

Permalink
Convert .eslintec to eslint.config.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
Septh committed Aug 18, 2024
1 parent e370879 commit 3e196fc
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 25 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

22 changes: 0 additions & 22 deletions .eslintrc

This file was deleted.

41 changes: 41 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import typescriptEslint from "@typescript-eslint/eslint-plugin"
import globals from "globals"
import tsParser from "@typescript-eslint/parser"
import path from "node:path"
import { fileURLToPath } from "node:url"
import js from "@eslint/js"
import { FlatCompat } from "@eslint/eslintrc"

const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
})

export default [
{
ignores: ["node_modules", "dist", "**/zz_*"],
},
...compat.extends("eslint:recommended", "plugin:@typescript-eslint/recommended"),
{
plugins: {
"@typescript-eslint": typescriptEslint,
},
languageOptions: {
globals: {
...globals.node,
},

parser: tsParser,
},
rules: {
"no-debugger": "off",
"no-unused-vars": "off",
"prefer-const": "warn",
"no-inner-declarations": "off",
"@typescript-eslint/no-unused-vars": "off",
}
}
]

0 comments on commit 3e196fc

Please sign in to comment.