feat(config-audit): register TOK scanner in scan-orchestrator
This commit is contained in:
parent
a090ed3a9f
commit
068622e513
1 changed files with 2 additions and 0 deletions
|
|
@ -23,6 +23,7 @@ import { scan as scanMcp } from './mcp-config-validator.mjs';
|
|||
import { scan as scanImports } from './import-resolver.mjs';
|
||||
import { scan as scanConflicts } from './conflict-detector.mjs';
|
||||
import { scan as scanGap } from './feature-gap-scanner.mjs';
|
||||
import { scan as scanTokenHotspots } from './token-hotspots.mjs';
|
||||
|
||||
// Directory names that identify test fixture / example directories
|
||||
const FIXTURE_DIR_NAMES = ['tests', 'examples', '__tests__', 'test-fixtures'];
|
||||
|
|
@ -53,6 +54,7 @@ const SCANNERS = [
|
|||
{ name: 'IMP', fn: scanImports, label: 'Import Resolver' },
|
||||
{ name: 'CNF', fn: scanConflicts, label: 'Conflict Detector' },
|
||||
{ name: 'GAP', fn: scanGap, label: 'Feature Gap Scanner' },
|
||||
{ name: 'TOK', fn: scanTokenHotspots, label: 'Token Hotspots' },
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue