You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"deprecationMessage": "Please use 'java.import.generatesMetadataFilesAtProjectRoot' to control whether to generate the project metadata files at the project root. And use 'files.exclude' to control whether to hide the project metadata files from the file explorer.",
49
50
"type": "boolean",
50
-
"default": true,
51
+
"default": false,
51
52
"description": "Controls whether to exclude extension-generated project settings files (.project, .classpath, .factorypath, .settings/) from the file explorer.",
"markdownDescription": "Enable telemetry to send your editor information and error logs over the network. Read our privacy policy [here](https://github.com/sumneko/lua-language-server/wiki/Privacy-Policy).\n",
Copy file name to clipboardExpand all lines: src/languages/extensions/configurations/typescript-language-features.json
+14-4Lines changed: 14 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -645,7 +645,12 @@
645
645
"double"
646
646
],
647
647
"default": "auto",
648
-
"markdownDescription": "Preferred quote style to use for quick fixes: `single` quotes, `double` quotes, or `auto` infer quote type from existing imports.",
648
+
"markdownDescription": "Preferred quote style to use for quick fixes.",
649
+
"markdownEnumDescriptions": [
650
+
"Infer quote type from existing code",
651
+
"Always use single quotes: `'`",
652
+
"Always use double quotes: `\"`"
653
+
],
649
654
"scope": 5
650
655
},
651
656
"typescript.preferences.quoteStyle": {
@@ -656,7 +661,12 @@
656
661
"double"
657
662
],
658
663
"default": "auto",
659
-
"markdownDescription": "Preferred quote style to use for quick fixes: `single` quotes, `double` quotes, or `auto` infer quote type from existing imports.",
664
+
"markdownDescription": "Preferred quote style to use for quick fixes.",
665
+
"markdownEnumDescriptions": [
666
+
"Infer quote type from existing code",
667
+
"Always use single quotes: `'`",
668
+
"Always use double quotes: `\"`"
669
+
],
660
670
"scope": 5
661
671
},
662
672
"javascript.preferences.importModuleSpecifier": {
@@ -739,7 +749,7 @@
739
749
"none"
740
750
],
741
751
"markdownEnumDescriptions": [
742
-
"Insert `={}` or `=\"\"` after attribute names based on the prop type.",
752
+
"Insert `={}` or `=\"\"` after attribute names based on the prop type. See `javascript.preferences.quoteStyle` to control the type of quotes used for string attributes.",
743
753
"Insert `={}` after attribute names.",
744
754
"Only insert attribute names."
745
755
],
@@ -755,7 +765,7 @@
755
765
"none"
756
766
],
757
767
"markdownEnumDescriptions": [
758
-
"Insert `={}` or `=\"\"` after attribute names based on the prop type.",
768
+
"Insert `={}` or `=\"\"` after attribute names based on the prop type. See `typescript.preferences.quoteStyle` to control the type of quotes used for string attributes.",
0 commit comments