标签: tabs coffeescript size gruntjs
我在我当前的项目中使用grunt-contrib-coffee,我想知道,如何在编译的.js文件中增加标签大小? 默认情况下,选项卡大小等于两个空格,但我希望它变大,大约4个空格。 如何实施?
答案 0 :(得分:0)
看起来团队建议运行生成的js through a js formatter。
有grunt plugin for this task,配置如下:
indentChar: " ", indentLevel: 0, indentSize: 4,
那可以让你摆平。