I have the following JShint
related modules versions on my local machine
and our jenkins build
machine, which runs jshint before building the UI
:
npm -v // 2.14.7
npm view jshint version // 2.9.2
npm view grunt version // 1.0.1
npm view grunt-contrib version // 0.11.0
npm view grunt-contrib-jshint version // 1.0.0
Both machines use the same .jshintrc
config file.
When i run jshint on locally i get no problems
.
When i run it on the build machine
(same code of course) - i get many errors.
I'm pretty sure it's versions related since the config and code are the same but i don't know where else to look.
Thanks!