I always get the following output when trying to start jshint:
C:\Users\foo\Source\
λ jshint -c .glados-jshintrc gulpfile.js
ERROR: Can't parse config file: .glados-jshintrc
Error:SyntaxError: Unexpected token
My jshint configuration file is pretty trivial, I copied it directly from jshint docs:
{
"undef": true,
"unused": true,
"predef": [ "MY_GLOBAL" ]
}
Any ideas to get this job will be appreciated.
source
share