refactor(core): Extract file filtering constants from Config to break circular dependency (#9974)

This commit is contained in:
Abhi
2025-09-26 13:37:00 -04:00
committed by GitHub
parent e8a065cb9f
commit 3d7cb3fb8a
7 changed files with 40 additions and 23 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import type { ToolInvocation, ToolResult } from './tools.js';
import { BaseDeclarativeTool, BaseToolInvocation, Kind } from './tools.js';
import { makeRelative, shortenPath } from '../utils/paths.js';
import type { Config } from '../config/config.js';
import { DEFAULT_FILE_FILTERING_OPTIONS } from '../config/config.js';
import { DEFAULT_FILE_FILTERING_OPTIONS } from '../config/constants.js';
import { ToolErrorType } from './tool-error.js';
/**