/** @type {import("eslint").Linter.Config} */ module.exports = { root: true, extends: ["@repo/eslint-config/react-internal.js"], parser: "@typescript-eslint/parser", parserOptions: { project: "./tsconfig.lint.json", tsconfigRootDir: __dirname, }, plugins: ["jest"], env: { "jest/globals": true, }, rules: { "no-unused-vars": [ "warn", // or "error" { argsIgnorePattern: "^_", varsIgnorePattern: "^_", caughtErrorsIgnorePattern: "^_", }, ], }, };