| 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: "^_.*", | |
| }, | |
| ], | |
| }, | |
| }, | |
| ); |