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
Adds a `prettier.runtime` configuration option that, when used, invokes a version of `PrettierWorkerInstance` that uses `fork` instead of worker threads.
Fixes: #3017Fixes: #2857
Copy file name to clipboardExpand all lines: package.nls.json
+1
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@
27
27
"ext.config.requireConfig": "Require a prettier configuration file to format. See [documentation for valid configuration files](https://prettier.io/docs/en/configuration.html).\n\n> _Note, untitled files will still be formatted using the VS Code prettier settings even when this setting is set._",
28
28
"ext.config.requirePragma": "Prettier can restrict itself to only format files that contain a special comment, called a pragma, at the top of the file. This is very useful when gradually transitioning large, unformatted codebases to prettier.",
29
29
"ext.config.resolveGlobalModules": "When enabled, this extension will attempt to use global npm or yarn modules if local modules cannot be resolved.\n> _This setting can have a negative performance impact, particularly on Windows when you have attached network drives. Only enable this if you must use global modules._",
30
+
"ext.config.runtime": "he location of the node binary to run prettier under.",
30
31
"ext.config.withNodeModules": "This extension will process files in `node_modules`.",
31
32
"ext.config.semi": "Whether to add a semicolon at the end of every line.",
32
33
"ext.config.singleQuote": "Use single instead of double quotes.",
0 commit comments