我正在尝试使用 Grunt 和咖啡脚本中的所有源来构建一个项目。首先,我想通过 Coffeelint 运行所有源代码。我的 Gruntfile.coffee 是:
# Gruntfile for base code for Polyglot
module.exports = ->
@initConfig
@loadNpmTasks 'grunt-coffeelint'
coffeelint:
all:["*.coffee"]
@registerTask "default",["coffeelint"]
我愿意:
咕哝
并得到:
未找到“coffeelint”目标。
我期待 lint Gruntfile.coffee。
我究竟做错了什么?