50

我使用 VS Code 作为编辑器。我们有一个.editorconfig包含格式配置的文件。我们都在我们的编辑器中使用扩展名 EditorConfig 来格式化我们的 HTML 和 CSS 通用格式。我已经从这里安装了 VS Code 的扩展 EditorConfig:https ://github.com/editorconfig/editorconfig-vscode

我们的 .editorconfig 文件如下所示:

# This is the top-most .editorconfig file (do not search in parent directories)
root = true

### All files
[*]
# Force charset utf-8
charset = utf-8
# Indentation
indent_style = tab
indent_size = 4
# line breaks and whitespace
insert_final_newline = true
trim_trailing_whitespace = true
# end_of_line = lf

### Frontend files
[*.{css,scss,less,js,json,ts,sass,php,html,hbs,mustache,phtml,html.twig}]

### Markdown
[*.md]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false

### YAML
[*.yml]
indent_style = space
indent_size = 2

### Specific files
[{package,bower}.json]
indent_style = space
indent_size = 2

我找不到任何键盘快捷键、设置或其他。如何让我的扩展从.editorconfig文件中做这些事情?

4

3 回答 3

69

我自己的解决方案:

我遇到的问题是,我将扩展添加editorconfig到我vscode的 . 中,但没有安装npm package它。因此,仅将扩展添加到您的 vscode 是不够的,您还必须安装软件包,以便它可以运行。

我像这样安装了npm package全局:npm install -g editorconfig

之后,我添加了扩展并启用了它。现在它完美无缺。

这是所需 npm 包的链接:https ://www.npmjs.com/package/editorconfig

这是您的 vscode 所需扩展的链接:https ://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig

于 2018-01-30T14:07:53.730 回答
3

除了以上所有我还需要打开编辑器格式保存选项。

{
   "editor.formatOnSave": true
}
于 2021-01-16T16:09:19.983 回答
0

我收到错误“Extension EditorConfig 无法格式化 ...”(在 IDE 底部,几秒钟后消失)。

更改首选项(ctrl+,,搜索format并设置Editor:DefaultFormatterNone(而不是EditorConfig))为我解决了这个问题(是的,很有趣,这确实可以使用.editorconfig- 而不是任何其他格式规则)

Codium:1.60.2 与EditorConfig:v0.16.6

于 2021-10-01T14:37:48.583 回答