forked from prettier/prettier-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.nls.zh-cn.json
35 lines (35 loc) · 4.31 KB
/
package.nls.zh-cn.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
{
"ext.command.createConfigFile.title": "Prettier:选择配置方案文件",
"ext.command.forceFormatDocument.title": "格式化整个文件",
"ext.config.arrowParens": "箭头函数仅有一个参数时,参数也添加括号",
"ext.config.bracketSpacing": "对象花括号内的两旁添加空格",
"ext.config.configPath": "指定 Prettier 配置方案文件的路径,设置该项后将始终忽略本地配置方案使用该路径的配置方案",
"ext.config.documentSelectors": "指定一个 [glob patterns](https://code.visualstudio.com/api/references/vscode-api#GlobPattern) 列表,以匹配特定文件,使这些文件也启用 Prettier",
"ext.config.endOfLine": "指定文件的结尾换行符",
"ext.config.htmlWhitespaceSensitivity": "指定 HTML 元素是在「内容内换行」还是在「属性与右尖括号内换行」,前者可能导致内联元素渲染出额外的空格。选项:`css`──块级元素采用前者,内联元素采用后者、 `strict`──全部采用后者、 `ignore`──全部采用后者。[参考文档](https://www.wolai.com/make/nfqXcvFSXy6KtnVvD8xrNL)",
"ext.config.ignorePath": "指定 `.prettierignore` (或其他配置方案文件)的路径。[参考文档](https://prettier.io/docs/en/ignore.html#ignoring-files-prettierignore) ",
"ext.config.insertPragma": "格式化的同时自动插入 `@format` 的特殊注释,以表示该文件已被 Prettier 格式化过",
"ext.config.singleAttributePerLine": "如果 HTML元素(包括 JSX 等)具有多个属性,将其每个属性格式化为单独占一行",
"ext.config.bracketSameLine": "如果 HTML元素(包括 JSX 等) 具有多个属性,将其结束标签右尖括号 `>` 放在最后一个属性的末尾,而不是另起一行",
"ext.config.jsxSingleQuote": "JSX 中使用单引号而不是双引号",
"ext.config.prettierPath": "指定 Prettier 要使用的 `node_module` 的路径,如`./node_modules/prettier`",
"ext.config.printWidth": "指定每行代码的最佳长度,如果超出该长度则格式化",
"ext.config.proseWrap": "指定在 Markdown 文本的换行方式。选项:`always`──超过 print-width 时换行、 `never`──不换行、 `preserve`──不进行任何操作,保持原样",
"ext.config.quoteProps": "指定对象中 key 的引号添加方式。选项: `as-needed`──只有在需求要的情况下加引号、 `consistent`──有一个需要引号就给其他都统一加上、 `preserve`──保留用户输入的引号",
"ext.config.requireConfig": "Prettier 配置方案文件(如 `.prettierrc`)必须存在。即使该项被设置 true,未命名文件仍会使用 `VS Code` 的 `setting.json` 中的配置方案进行格式化",
"ext.config.requirePragma": "只对在开头含有特定注释(如 `@format` )的文件进行格式化",
"ext.config.resolveGlobalModules": "在当前 `node_modules` 无法解析时使用全局 `node_modules` 。可能造成性能上的影响",
"ext.config.withNodeModules": "允许 Prettier 格式化 `node_modules` 中的文件",
"ext.config.semi": "在所有代码语句的末尾添加分号",
"ext.config.singleQuote": "使用单引号而不是双引号",
"ext.config.tabWidth": "指定一个制表符等于的空格数",
"ext.config.title": "Prettier",
"ext.config.trailingComma": "指定添加尾后逗号的方式。选项:`none`──无尾后逗号、 `es5`──在 ES5 中有效的尾后逗号(如对象与数组等)、 `all`──尽可能添加尾后逗号(如函数参数)",
"ext.config.useEditorConfig": "使用 `.editorconfig` 中的配置方案。[参考文档 prettier.resolveConfig](https://prettier.io/docs/en/api.html)",
"ext.config.useTabs": "使用 `Tab` 缩进,而不是空格缩进",
"ext.config.vueIndentScriptAndStyle": "缩进 Vue 的 `<script>` 和 `<style>` 标签。在这个问题上,[祖师爷](https://github.com/prettier/prettier/issues/3888#issuecomment-459521863)是不缩进的。可能会影响到编辑器的代码折叠功能",
"ext.config.embeddedLanguageFormatting": "对引号中代码使用智能格式化",
"ext.config.enable": "启用 Prettier。更改后需要重启 VS Code",
"ext.config.enableDebugLogs": "启用调试日志",
"ext.capabilities.untrustedWorkspaces.description": "在不受信任模式下只有内置版本的 Prettier 会生效"
}