mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 20:20:57 +00:00
Add setting enableRecursiveFileSearch to control @-file completion (#1290)
This commit is contained in:
parent
63f6a497cb
commit
0779697da6
8 changed files with 77 additions and 13 deletions
|
|
@ -75,7 +75,9 @@ describe('Configuration Integration Tests', () => {
|
|||
sandbox: false,
|
||||
targetDir: tempDir,
|
||||
debugMode: false,
|
||||
fileFilteringRespectGitIgnore: false,
|
||||
fileFiltering: {
|
||||
respectGitIgnore: false,
|
||||
},
|
||||
};
|
||||
|
||||
const config = new Config(configParams);
|
||||
|
|
@ -109,7 +111,9 @@ describe('Configuration Integration Tests', () => {
|
|||
sandbox: false,
|
||||
targetDir: tempDir,
|
||||
debugMode: false,
|
||||
fileFilteringRespectGitIgnore: false,
|
||||
fileFiltering: {
|
||||
respectGitIgnore: false,
|
||||
},
|
||||
};
|
||||
|
||||
const config = new Config(configParams);
|
||||
|
|
@ -178,7 +182,9 @@ describe('Configuration Integration Tests', () => {
|
|||
sandbox: false,
|
||||
targetDir: tempDir,
|
||||
debugMode: false,
|
||||
fileFilteringRespectGitIgnore: false, // CI might need to see all files
|
||||
fileFiltering: {
|
||||
respectGitIgnore: false,
|
||||
}, // CI might need to see all files
|
||||
};
|
||||
|
||||
const config = new Config(configParams);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue