这是我简单的 hello world 程序。
function sayHello() {
return 'Hello world';
}
我的jshint
配置:
{
"browser": true,
"browserify": true,
"devel": true,
"script": {
"lint": "jshint src"
}
}
和package.json
{
"name": "myangular",
"version": "1.0.0",
"devDependencies": {
"jshint": "^2.9.5"
}
}
当我运行jshint
时,出现以下错误:
$./node_modules/jshint/bin/jshint src
src/hello.js: line 0, col 0, Bad option: 'script'.
1 error
答案 0 :(得分:0)
我找到了原因。我把脚本放在了错误的地方。