import eslint from "@eslint/js"; import tseslint from "typescript-eslint"; export default tseslint.config( { ignores: ["dist/**", "node_modules/**"], }, eslint.configs.recommended, tseslint.configs.recommended, { rules: { "no-control-regex": "off", "no-empty": "off", "no-fallthrough": "off", "prefer-const": "off", "@typescript-eslint/no-empty-object-type": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-non-null-asserted-optional-chain": "off", "@typescript-eslint/no-unused-vars": "off", }, }, );