Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit a2a16d1

Browse files
committed
Update sonarjs rules
1 parent b95aac8 commit a2a16d1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/rules/sonarjs/no-duplicate-string.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ export type NoDuplicateStringConfig = 'sonar-runtime';
88
/**
99
* Option.
1010
*/
11-
export type NoDuplicateStringOption = number;
11+
export interface NoDuplicateStringOption {
12+
threshold?: number;
13+
ignoreStrings?: string;
14+
[k: string]: any;
15+
}
1216

1317
/**
1418
* Options.

0 commit comments

Comments
 (0)