blob: 20ef473b8d68517b184fb6337dafdbb3555d6006 [file] [log] [blame]
import js from "@eslint/js";
import tseslint from "typescript-eslint";
export default tseslint.config(
{ ignores: ["dist"] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.ts"],
languageOptions: {
ecmaVersion: 2020,
},
rules: {
"@typescript-eslint/no-unused-vars": [
"error",
{
argsIgnorePattern: "^_$",
varsIgnorePattern: "^_$",
caughtErrorsIgnorePattern: "^_$",
},
],
},
},
);