Skip to content

Commit

Permalink
Bump typescript-language-server from 3.3.0 to 3.3.2 (#210)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rafal Chlodnicki <[email protected]>
  • Loading branch information
dependabot[bot] and rchl authored Apr 17, 2023
1 parent 12f6eae commit ce744a3
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 21 deletions.
6 changes: 6 additions & 0 deletions LSP-typescript.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
"includePackageJsonAutoImports": "auto",
"jsxAttributeCompletionStyle": "auto",
"lazyConfiguredProjectsFromExternalProject": false,
"organizeImportsIgnoreCase": "auto",
"organizeImportsCollation": "ordinal",
"organizeImportsCollationLocale": "en",
"organizeImportsNumericCollation": false,
"organizeImportsAccentCollation": true,
"organizeImportsCaseFirst": false,
"providePrefixAndSuffixTextForRename": true,
"provideRefactorNotApplicableReason": true,
"quotePreference": "auto",
Expand Down
82 changes: 69 additions & 13 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,22 @@
"locale": {
"type": "string",
"pattern": "^([a-z]+)([_\\-]([a-z]+))?$",
"enum": ["cs", "de", "en", "es", "fr", "it", "ja", "ko", "pl", "pt-br", "ru", "tr", "zh-cn", "zh-tw"],
"enum": [
"cs",
"de",
"en",
"es",
"fr",
"it",
"ja",
"ko",
"pl",
"pt-br",
"ru",
"tr",
"zh-cn",
"zh-tw"
],
"default": "en",
"markdownDescription": "The locale to use for showing diagnostics."
},
Expand Down Expand Up @@ -148,6 +163,47 @@
"lazyConfiguredProjectsFromExternalProject": {
"type": "boolean",
},
"organizeImportsIgnoreCase": {
"enum": [
"auto",
true,
false
],
"default": "auto",
"markdownDescription": "Indicates whether imports should be organized in a case-insensitive manner."
},
"organizeImportsCollation": {
"enum": [
"ordinal",
"unicode",
],
"default": "ordinal",
"markdownDescription": "Indicates whether imports should be organized via an `\"ordinal\"` (binary) comparison using the numeric value of their code points, or via `\"unicode\"` collation (via the [Unicode Collation Algorithm](https://unicode.org/reports/tr10/#Scope)) using rules associated with the locale specified in `organizeImportsCollationLocale`."
},
"organizeImportsCollationLocale": {
"type": "string",
"default": "en",
"markdownDescription": "Indicates the locale to use for `\"unicode\"` collation. If not specified, the locale `\"en\"` is used as an invariant for the sake of consistent sorting. Use `\"auto\"` to use the detected UI locale.\n\nThis preference is ignored if `organizeImportsCollation` is not `\"unicode\"`."
},
"organizeImportsNumericCollation": {
"type": "boolean",
"default": false,
"markdownDescription": "Indicates whether numeric collation should be used for digit sequences in strings. When `true`, will collate strings such that `a1z < a2z < a100z`. When `false`, will collate strings such that `a1z < a100z < a2z`.\n\nThis preference is ignored if `organizeImportsCollation` is not `\"unicode\"`."
},
"organizeImportsAccentCollation": {
"type": "boolean",
"default": true,
"markdownDescription": "Indicates whether accents and other diacritic marks are considered unequal for the purpose of collation. When `true`, characters with accents and other diacritics will be collated in the order defined by the locale specified in `organizeImportsCollationLocale`.\n\nThis preference is ignored if {@link organizeImportsCollation} is not `\"unicode\"`."
},
"organizeImportsCaseFirst": {
"enum": [
"upper",
"lower",
false,
],
"default": false,
"markdownDescription": "Indicates whether upper case or lower case should sort first. When `false`, the default order for the locale specified in `organizeImportsCollationLocale` is used.\n\nThis preference is ignored if `organizeImportsCollation` is not `\"unicode\"`. This preference is also ignored if we are using case-insensitive sorting, which occurs when `organizeImportsIgnoreCase` is `true`, or if `organizeImportsIgnoreCase` is `\"auto\"` and the auto-detected case sensitivity is determined to be case-insensitive."
},
"providePrefixAndSuffixTextForRename": {
"type": "boolean",
},
Expand All @@ -172,18 +228,18 @@
"type": "boolean",
},
"jsxAttributeCompletionStyle": {
"enum": [
"auto",
"braces",
"none"
],
"default": "auto",
"markdownEnumDescriptions": [
"Insert `={}` or `=\"\"` after attribute names based on the prop type.",
"Insert `={}` after attribute names.",
"Only insert attribute names."
],
"markdownDescription": "Preferred style for JSX attribute completions.\n\nRequires TypeScript 4.5+."
"enum": [
"auto",
"braces",
"none"
],
"default": "auto",
"markdownEnumDescriptions": [
"Insert `={}` or `=\"\"` after attribute names based on the prop type.",
"Insert `={}` after attribute names.",
"Only insert attribute names."
],
"markdownDescription": "Preferred style for JSX attribute completions.\n\nRequires TypeScript 4.5+."
}
}
},
Expand Down
14 changes: 7 additions & 7 deletions typescript-language-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion typescript-language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"private": true,
"dependencies": {
"typescript": "4.9.5",
"typescript-language-server": "3.3.0"
"typescript-language-server": "3.3.2"
}
}

0 comments on commit ce744a3

Please sign in to comment.