如何将 html 的缩进大小设置为 atom-beautifier 中的制表符?我在 .jscsrc 中尝试了以下内容,但没有任何效果。
{
"html": {
"indent_char": " ",
"indent_size": 1,
"indent_with_tabs": true
}
}
如何将 html 的缩进大小设置为 atom-beautifier 中的制表符?我在 .jscsrc 中尝试了以下内容,但没有任何效果。
{
"html": {
"indent_char": " ",
"indent_size": 1,
"indent_with_tabs": true
}
}
该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
}
{
"indent_char": " ", //Tab here. Make sure editor doesn't change it.
"indent_size": 1,
"indent_with_tabs": true
}
我把它放在$ATOMPATH/packages/atom-beautify/.jsbeautifyrc
AND $ATOMPATH/packages/atom-beautify/src/.jsbeautifyrc
。
atom-beautify
仍然与标签一样有问题。还要确保关闭 Atom 中的“软标签”。
以下是杀死空间的一些技巧的要点:
https://gist.github.com/zamicol/c5c926500ddde49006122f9e4e52e48f