@iservu-inc/adf-cli 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -278,12 +278,19 @@ class Interviewer {
|
|
|
278
278
|
console.log('');
|
|
279
279
|
projectContext = { type: 'unknown', frameworks: [], languages: [], confidence: 0 };
|
|
280
280
|
|
|
281
|
-
// Still initialize skip tracker for basic tracking
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
281
|
+
// Still initialize skip tracker for basic tracking (only if pattern detection enabled)
|
|
282
|
+
if (this.analysisConfig.features.patternDetection) {
|
|
283
|
+
this.skipTracker = new SkipTracker(this.projectPath, {
|
|
284
|
+
projectType: 'unknown',
|
|
285
|
+
frameworks: [],
|
|
286
|
+
languages: []
|
|
287
|
+
});
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
} else {
|
|
291
|
+
// Smart filtering disabled - set defaults
|
|
292
|
+
console.log(chalk.gray('ℹ️ Smart filtering disabled by configuration\n'));
|
|
293
|
+
projectContext = { type: 'unknown', frameworks: [], languages: [], confidence: 0 };
|
|
287
294
|
}
|
|
288
295
|
|
|
289
296
|
// Get questions for framework
|