mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
17 lines
409 B
JSON
17 lines
409 B
JSON
{
|
|
"extends": "react-app",
|
|
"ignorePatterns": ["!.storybook"],
|
|
"rules": {
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["webview-ui/src/__tests__/utils/command-validation.test.ts"],
|
|
"rules": {
|
|
"no-template-curly-in-string": "off",
|
|
"no-useless-escape": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|