是否可以添加某些注释来忽略或修改特定块(缩进)上的咖啡规则?
我在脚本上使用了最多80列的规则,但是我有一些objetc的字符串值会超过该值,而中断行会使代码更难阅读。
前任。:
##
# @coffeelint ignore max_line_length
##
object:
attr: "some/huge/line/string/with/embed/#{values}.that/surpasses/the/max/column/width"
最佳答案
这是语法。
# coffeelint: disable=max_line_length
object:
attr: "some/huge/line/string/with/embed/#{values}.that/surpasses/the/max/column/width"
# coffeelint: enable=max_line_length
关于coffeescript - 通过注释修改代码上的coffeelint规则,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23521665/