import eslint from "@eslint/js"; import tseslint from "typescript-eslint"; export default tseslint.config( eslint.configs.recommended, tseslint.configs.recommended, tseslint.configs.strict, { rules: { "no-empty": ["error", { allowEmptyCatch: true }], "@typescript-eslint/no-unused-vars": [ "error", { varsIgnorePattern: "_", argsIgnorePattern: "_" }, ], "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-explicit-any": "off", }, }, { ignores: ["ecosystem.config.cjs"], } );