mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
17 lines
310 B
JavaScript
17 lines
310 B
JavaScript
import { nextJsConfig } from "@roo-code/config-eslint/next-js"
|
|
|
|
/** @type {import("eslint").Linter.Config} */
|
|
export default [
|
|
...nextJsConfig,
|
|
{
|
|
rules: {
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"error",
|
|
{
|
|
caughtErrorsIgnorePattern: "^_",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
]
|