-
-
Notifications
You must be signed in to change notification settings - Fork 459
/
package.nls.json
44 lines (44 loc) · 5.78 KB
/
package.nls.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"ext.command.createConfigFile.title": "Prettier: Create Configuration File",
"ext.command.forceFormatDocument.title": "Format Document (Forced)",
"ext.config.arrowParens": "Include parentheses around a sole arrow function parameter.",
"ext.config.bracketSpacing": "Controls the printing of spaces inside object literals.",
"ext.config.configPath": "Path to the prettier configuration file.",
"ext.config.disableLanguages": "A list of languages IDs to disable this extension on.",
"ext.config.disableLanguagesDeprecation": "This feature is no longer supported. Instead, configure VS Code [default formatters](https://github.com/prettier/prettier-vscode#default-formatter) or use .prettierignore.",
"ext.config.documentSelectors": "A list of [glob patterns](https://code.visualstudio.com/api/references/vscode-api#GlobPattern) to register Prettier formatter.",
"ext.config.endOfLine": "Specify the end of line used by prettier.",
"ext.config.htmlWhitespaceSensitivity": "Specify the global [whitespace sensitivity](https://prettier.io/blog/2018/11/07/1.15.0.html#whitespace-sensitive-formatting) for HTML files.\nValid options:\n- `css` - Respect the default value of CSS `display` property.\n- `strict` - Whitespaces are considered sensitive.\n- `ignore` - Whitespaces are considered insensitive.",
"ext.config.ignorePath": "Path to a `.prettierignore` file.",
"ext.config.insertPragma": "Prettier can insert a special `@format` marker at the top of files specifying that the file has been formatted with prettier. This works well when used in tandem with the `--require-pragma` option. If there is already a docblock at the top of the file then this option will add a newline to it with the `@format` marker.",
"ext.config.singleAttributePerLine": "Enforces single attribute per line in HTML, JSX, Vue and Angular.",
"ext.config.bracketSameLine": "Puts the `>` of a multi-line HTML (HTML, JSX, Vue, Angular) element at the end of the last line instead of being alone on the next line (does not apply to self closing elements).",
"ext.config.jsxBracketSameLine": "Puts the `>` of a multi-line jsx element at the end of the last line instead of being alone on the next line (does not apply to self closing elements).",
"ext.config.jsxBracketSameLineDeprecation": "This option has been deprecated in v2.4.0, use `bracketSameLine` instead.",
"ext.config.jsxSingleQuote": "Use single quotes instead of double quotes in JSX.",
"ext.config.packageManager": "The package manager you use to install node modules.",
"ext.config.packageManagerDeprecation": "Package manager is now automatically detected by VS Code. This setting is no longer used.",
"ext.config.parser": "Override the parser. You shouldn't have to change this setting.",
"ext.config.parserDeprecationMessage": "This setting is no longer supported. Use a prettier configuration file instead.",
"ext.config.prettierPath": "Path to the `prettier` module, eg: `./node_modules/prettier`.",
"ext.config.printWidth": "Fit code within this line limit.",
"ext.config.proseWrap": "(Markdown) wrap prose over multiple lines.",
"ext.config.quoteProps": "Change when properties in objects are quoted.\nValid options:\n- `\"as-needed\"` - Only add quotes around object properties where required.\n- `\"consistent\"` - If at least one property in an object requires quotes, quote all properties.\n- `\"preserve\"` - Respect the input use of quotes in object properties.",
"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._",
"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.",
"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._",
"ext.config.withNodeModules": "This extension will process files in `node_modules`.",
"ext.config.semi": "Whether to add a semicolon at the end of every line.",
"ext.config.singleQuote": "Use single instead of double quotes.",
"ext.config.tabWidth": "Number of spaces it should use per tab.",
"ext.config.title": "Prettier",
"ext.config.trailingComma": "Controls the printing of trailing commas wherever possible. \nValid options:\n- `none` - No trailing commas\n- `es5` - Trailing commas where valid in ES5 (objects, arrays, etc)\n- `all` - Trailing commas wherever possible (function arguments)",
"ext.config.useEditorConfig": "Whether or not to take `.editorconfig` into account when parsing configuration. See the [`prettier.resolveConfig`](https://prettier.io/docs/en/api.html) docs for details.",
"ext.config.useTabs": "Indent lines with tabs.",
"ext.config.vueIndentScriptAndStyle": "Whether or not to indent the code inside `<script>` and `<style>` tags in Vue SFC files.",
"ext.config.embeddedLanguageFormatting": "Control whether Prettier formats quoted code embedded in the file.",
"ext.config.enable": "Controls whether Prettier is enabled or not. Reload required.",
"ext.config.enableDebugLogs": "Enable debug logs for troubleshooting.",
"ext.config.experimentalTernaries": "Try prettier's [new ternary formatting](https://github.com/prettier/prettier/pull/13183) before it becomes the default behavior.",
"ext.capabilities.untrustedWorkspaces.description": "Only the built-in version of Prettier will be used when running in untrusted mode."
}