mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
* Evals * Remove redundant line * Fix tsc error * Disable debug mode * Add option to kill run
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
import { nextJsConfig } from "@evals/eslint-config/next-js"
|
|
|
|
/** @type {import("eslint").Linter.Config} */
|
|
export default [
|
|
...nextJsConfig,
|
|
{
|
|
rules: {
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"error",
|
|
{
|
|
caughtErrorsIgnorePattern: "^_",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
]
|