jscs: {
src: ['<%= config.app %>/scripts/{,*/}*.js'],
options: {
config: '.jscsrc'
},
force: true
},
这是我的Grunt文件配置 我正在尝试使用描述https://github.com/jscs-dev/grunt-jscs/
的插件加载任务后,它会抛出错误
Running "jscs:files" (jscs) task
Warning: Object #<Object> has no method 'indexOf' Use --force to continue.
重置force:true
可让我继续,但如果团队中的任何人避免这种情况,我希望任务失败。
我该如何解决这个问题?