当使用jshint作为hello world脚本时,我得到了"第0行,第0列,错误选项:'脚本'。"

时间:2018-04-08 08:48:21

标签: javascript node.js npm jshint

这是我简单的 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

1 个答案:

答案 0 :(得分:0)

我找到了原因。我把脚本放在了错误的地方。