File tree 2 files changed +6
-3
lines changed
tests/baselines/reference/api
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3545,7 +3545,7 @@ export interface UserPreferences {
3545
3545
*
3546
3546
* This preference is ignored if {@link organizeImportsCollation} is not `"unicode"`.
3547
3547
*
3548
- * Default: `true `
3548
+ * Default: `false `
3549
3549
*/
3550
3550
readonly organizeImportsNumericCollation ?: boolean ;
3551
3551
/**
@@ -3562,7 +3562,10 @@ export interface UserPreferences {
3562
3562
* Indicates whether upper case or lower case should sort first. When `false`, the default order for the locale
3563
3563
* specified in {@link organizeImportsCollationLocale} is used.
3564
3564
*
3565
- * This preference is ignored if {@link organizeImportsCollation} is not `"unicode"`.
3565
+ * This preference is ignored if {@link organizeImportsCollation} is not `"unicode"`. This preference is also
3566
+ * ignored if we are using case-insensitive sorting, which occurs when {@link organizeImportsIgnoreCase} is `true`,
3567
+ * or if {@link organizeImportsIgnoreCase} is `"auto"` and the auto-detected case sensitivity is determined to be
3568
+ * case-insensitive.
3566
3569
*
3567
3570
* Default: `false`
3568
3571
*/
Original file line number Diff line number Diff line change @@ -2830,7 +2830,7 @@ declare namespace ts {
2830
2830
*
2831
2831
* This preference is ignored if {@link organizeImportsCollation} is not `"unicode"`.
2832
2832
*
2833
- * Default: `true `
2833
+ * Default: `false `
2834
2834
*/
2835
2835
readonly organizeImportsNumericCollation?: boolean;
2836
2836
/**
You can’t perform that action at this time.
0 commit comments