mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
fix: update FALLBACK_LIMIT to 2000 lines
This commit is contained in:
parent
e184ca6216
commit
c6b4d1abca
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ import { createReadStream } from "fs"
|
|||
// Configuration constants
|
||||
const MAX_LINE_LENGTH = 500 // Truncate lines longer than this
|
||||
const TAB_WIDTH = 4 // Treat tabs as 4 spaces for indentation
|
||||
const FALLBACK_LIMIT = 500 // Fallback when no limit is specified and maxReadFileLine is not set
|
||||
const FALLBACK_LIMIT = 2000 // Fallback when no limit is specified and maxReadFileLine is not set
|
||||
|
||||
// Comment prefixes for header detection
|
||||
const COMMENT_PREFIXES = ["#", "//", "--", "/*", "*", "'''", '"""', "<!--"]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue