具有此.editorconfig:

# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false


.jscsrc的语法是什么
我知道选项卡就像

"validateIndentation": "\t",


但是4个空格的语法是什么?

最佳答案

空格的语法是仅使用整数,因此:

"validateIndentation": 4,

the docs的相关摘录:


validateIndentation

验证switch语句和block语句的缩进

类型:IntegerStringObject

值:

Integer:正数空格

08-19 22:41