eslint.config.mjs 310 B

1234567891011121314151617
  1. import { nextJsConfig } from "@roo-code/config-eslint/next-js"
  2. /** @type {import("eslint").Linter.Config} */
  3. export default [
  4. ...nextJsConfig,
  5. {
  6. rules: {
  7. "no-unused-vars": "off",
  8. "@typescript-eslint/no-unused-vars": [
  9. "error",
  10. {
  11. caughtErrorsIgnorePattern: "^_",
  12. },
  13. ],
  14. },
  15. },
  16. ]