How do I pass global config to jshint?

我怕爱的太早我们不能终老 提交于 2019-12-10 02:29:12

问题


How do I pass global config to jshint? I didn't find the answer in the documentation.

My config file:

>type tests\jshint_options.js
/*jshint globalstrict:true */

This is what I've tried so far:

>jshint myfile.js --config=tests\jshint_options.js
myfile.js: line 1, col 1, Use the function form of "use strict".
myfile.js: line 4, col 24, Unescaped '['.
myfile.js: line 4, col 49, Unescaped '['.

3 errors

>jshint myfile.js --config tests\jshint_options.js

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^
SyntaxError: Unexpected end of input
    at Object.parse (native)
    at _loadAndParseConfig (C:\Users\RONG\AppData\Roaming\npm\node_modules\jshint\lib\cli.js:28:18)
    at Object.interpret (C:\Users\RONG\AppData\Roaming\npm\node_modules\jshint\lib\cli.js:114:22)
    at Object.<anonymous> (C:\Users\RONG\AppData\Roaming\npm\node_modules\jshint\bin\hint:2:25)
    at Module._compile (module.js:441:26)
    at Object..js (module.js:459:10)
    at Module.load (module.js:348:31)
    at Function._load (module.js:308:12)
    at Array.0 (module.js:479:10)
    at EventEmitter._tickCallback (node.js:192:40)

>

回答1:


After much digging, I found this helpful blog post that reveled ...

that the config file is in JSON format, not javascript comments!

{
    "supernew": true
}

P.S.

This is actually documented in nodejs-jshint documentations! Not sure why I haven't found that before.



来源:https://stackoverflow.com/questions/9770968/how-do-i-pass-global-config-to-jshint

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!