1

如何将 html 的缩进大小设置为 atom-beautifier 中的制表符?我在 .jscsrc 中尝试了以下内容,但没有任何效果。

{
  "html": {
    "indent_char": "    ",
    "indent_size": 1,
    "indent_with_tabs": true
  }
}
4

2 回答 2

3

atom-beautifier软件包已弃用,作者建议用户迁移到该atom-beautify软件包

请使用:https ://atom.io/packages/atom-beautify好多了:)

atom-beautify包支持.jsbeautifyrc配置缩进大小:

{
  "indent_size": 2,
  "indent_char": " ",
  "other": " ",
  "indent_level": 0,
  "indent_with_tabs": false,
  "preserve_newlines": true,
  "max_preserve_newlines": 2,
  "jslint_happy": true,
  "indent_handlebars": true
}
于 2016-05-13T09:16:57.213 回答
0

{ "indent_char": " ", //Tab here. Make sure editor doesn't change it. "indent_size": 1, "indent_with_tabs": true }

我把它放在$ATOMPATH/packages/atom-beautify/.jsbeautifyrcAND $ATOMPATH/packages/atom-beautify/src/.jsbeautifyrc

atom-beautify仍然与标签一样有问题。还要确保关闭 Atom 中的“软标签”。

以下是杀死空间的一些技巧的要点:

https://gist.github.com/zamicol/c5c926500ddde49006122f9e4e52e48f

于 2017-04-09T19:25:52.780 回答