File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -495,7 +495,8 @@ class AISlopDetector {
495495 '**/lib/**' , // Generated library files
496496 'scripts/ai-slop-detector.ts' , // Exclude the detector script itself to avoid false positives
497497 'ai-slop-detector.ts' , // Also exclude when in root directory
498- 'improved-ai-slop-detector.ts' // Exclude the improved detector script to avoid false positives
498+ 'improved-ai-slop-detector.ts' , // Exclude the improved detector script to avoid false positives
499+ ...this . customIgnorePaths
499500 ]
500501 } ) ;
501502
Original file line number Diff line number Diff line change @@ -405,8 +405,9 @@ class AISlopDetector {
405405 // Exclude the detector script itself to avoid false positives
406406 'ai-slop-detector.ts' ,
407407 // Also exclude when in root directory
408- 'improved-ai-slop-detector.ts' // Exclude the improved detector script to avoid false positives
409- ]
408+ 'improved-ai-slop-detector.ts' ,
409+ // Exclude the improved detector script to avoid false positives
410+ ...this . customIgnorePaths ]
410411 } ) ;
411412
412413 // Additional filtering to remove any generated files that may have slipped through
You can’t perform that action at this time.
0 commit comments