手记

Path must be a string. Received null Used --force, continuing.

17年做过的一个nodejs项目,现在拿来重新玩玩,安装完node_modules版本依赖后,node app启动项目正常,没有报错,访问都可以。

但是能过grunt启动项目的时候,会报警告:Running "jshint:all" (jshint) task Warning: Path must be a string. Received null Used --force, continuing. 虽然项目能正常启动,但是在控制台上出现警告对我这种严格要求代码规范的人来说,实在不能容忍。于是各种调查。

检查了代码和jshint语法,没有问题。

jshint官网查了一遍,结果发现,只需要在代码中加上[reporterOutput:'']一句就可以解决。

我是这样解决的,直接上代码。


jshint: {
    options: {
        jshintrc: '.jshintrc',
        ignores: ['public/libs/**/*.js'],
        reporterOutput: ''
    },
    all: ['public/js/*.js', 'test/**/*.js', 'app/**/*.js']
},

记录一下!

1人推荐
随时随地看视频
慕课网APP