我有 grunt-contrib-jshint 来验证JS文件。将 jshint 版本更改为 0.9.2 以外的版本时出现问题。配置Gruntfile.js
jshint: {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
all: [
'Gruntfile.js',
'<%= config.app %>/scripts/**/*.js',
'!<%= config.app %>/content_scripts/coffee/*'
]
}
和.jshintrc
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": false,
"unused": false,
"strict": false,
}
因此,当我更新到最新版本 0.11.2 时,JSHint可以正常工作但在 0.9.2 上显示没有问题时会显示各种错误。
请帮忙。