File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed
Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { readJsonSync } from "fs-extra";
22import { resolve } from "path" ;
33import Ajv from "ajv" ;
44import { clearLocalDbConfig , DbConfig } from "./db-config" ;
5- import { findDuplicateStrings } from "../../text-utils" ;
5+ import { findDuplicateStrings } from "../../pure/ text-utils" ;
66import {
77 DbConfigValidationError ,
88 DbConfigValidationErrorKind ,
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,20 +2,20 @@ import { CellValue } from "../pure/bqrs-cli-types";
22import { tryGetRemoteLocation } from "../pure/bqrs-utils" ;
33import { createRemoteFileRef } from "../pure/location-link-utils" ;
44import { parseHighlightedLine , shouldHighlightLine } from "../pure/sarif-utils" ;
5- import { convertNonPrintableChars } from "../text-utils" ;
6- import {
5+ import { convertNonPrintableChars } from "../pure/ text-utils" ;
6+ import type {
77 AnalysisAlert ,
88 AnalysisRawResults ,
99 CodeSnippet ,
1010 FileLink ,
1111 HighlightedRegion ,
1212} from "./shared/analysis-result" ;
13- import {
13+ import type {
1414 VariantAnalysis ,
1515 VariantAnalysisScannedRepository ,
1616 VariantAnalysisScannedRepositoryResult ,
1717} from "./shared/variant-analysis" ;
18- import { RepositoryWithMetadata } from "./shared/repository" ;
18+ import type { RepositoryWithMetadata } from "./shared/repository" ;
1919
2020export type MarkdownLinkType = "local" | "gist" ;
2121
Original file line number Diff line number Diff line change 99} from "../../pure/interface-types" ;
1010import { assertNever } from "../../pure/helpers-pure" ;
1111import { vscode } from "../vscode-api" ;
12- import { convertNonPrintableChars } from "../../text-utils" ;
12+ import { convertNonPrintableChars } from "../../pure/ text-utils" ;
1313import { sendTelemetry } from "../common/telemetry" ;
1414
1515export interface ResultTableProps {
Original file line number Diff line number Diff line change 99} from "../../pure/bqrs-cli-types" ;
1010import { tryGetRemoteLocation } from "../../pure/bqrs-utils" ;
1111import TextButton from "../common/TextButton" ;
12- import { convertNonPrintableChars } from "../../text-utils" ;
12+ import { convertNonPrintableChars } from "../../pure/ text-utils" ;
1313import { sendTelemetry , useTelemetryOnChange } from "../common/telemetry" ;
1414
1515const numOfResultsInContractedMode = 5 ;
Original file line number Diff line number Diff line change 1- import { findDuplicateStrings } from "../../src/text-utils" ;
1+ import { findDuplicateStrings } from "../../src/pure/ text-utils" ;
22
33describe ( "findDuplicateStrings" , ( ) => {
44 it ( "should find duplicates strings in an array of strings" , ( ) => {
You can’t perform that action at this time.
0 commit comments