2d22a54b55
Extract rule finding logic: - project-root-finder.ts: project root detection - rule-file-finder.ts: rule file discovery - rule-file-scanner.ts: filesystem scanning for rules - rule-distance.ts: rule-to-file distance calculation
4 lines
162 B
TypeScript
4 lines
162 B
TypeScript
export { findProjectRoot } from "./project-root-finder";
|
|
export { calculateDistance } from "./rule-distance";
|
|
export { findRuleFiles } from "./rule-file-finder";
|