Skip to content

Commit 76c41e9

Browse files
committed
feat: use new extractor by default
1 parent 0d45e80 commit 76c41e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/extractUnusedImports.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import { newExtractor } from './nextVersionExtractUnusedImports';
33
import { oldExtractor } from './oldExtractor';
44

55
export function extractUnusedImports(text: string, configuration: PhpImportCheckerConfiguration) {
6-
if (configuration.use_next_version) {
6+
// if (configuration.use_next_version) {
77
return newExtractor(text, configuration);
8-
}
8+
// }
99

10-
return oldExtractor(text);
10+
// return oldExtractor(text);
1111
}

0 commit comments

Comments
 (0)