blob: 25eded94d5b60e5d32e6e5a0bf35b26ec6e26abc [file] [log] [blame]
gio8d0f6352025-05-11 13:29:33 +00001import js from "@eslint/js";
2import tseslint from "typescript-eslint";
3
4export default tseslint.config(
5 { ignores: ["dist"] },
6 {
7 extends: [js.configs.recommended, ...tseslint.configs.recommended],
8 files: ["**/*.ts"],
9 languageOptions: {
10 ecmaVersion: 2020,
11 },
12 rules: {
13 "@typescript-eslint/no-unused-vars": [
14 "error",
15 {
gio8323a052025-08-04 06:12:26 +000016 argsIgnorePattern: "^_.*",
17 varsIgnorePattern: "^_.*",
18 caughtErrorsIgnorePattern: "^_.*",
gio8d0f6352025-05-11 13:29:33 +000019 },
20 ],
21 },
22 },
23);