咕噜咖啡标签尺寸增加

时间:2014-03-14 18:07:12

标签: tabs coffeescript size gruntjs

我在我当前的项目中使用grunt-contrib-coffee,我想知道,如何在编译的.js文件中增加标签大小? 默认情况下,选项卡大小等于两个空格,但我希望它变大,大约4个空格。 如何实施?

1 个答案:

答案 0 :(得分:0)

看起来团队建议运行生成的js through a js formatter

grunt plugin for this task,配置如下:

indentChar: " ",
indentLevel: 0,
indentSize: 4,

那可以让你摆平。