royriojas / eslint-friendly-formatter

A simple formatter/reporter for ESLint that's friendly with Sublime Text and iterm2 "click to open file" functionality
MIT License
198 stars 28 forks source link

on windows 7 single quotes not needed for npm script #17

Closed t0lkman closed 8 years ago

t0lkman commented 8 years ago

in my case, this doesn't work (complains that cannot find module) "eslint": "eslint --format 'node_modules/eslint-friendly-formatter' file1 file2 dir1/ dir2/",

but this works

"eslint": "eslint --format node_modules/eslint-friendly-formatter file1 file2 dir1/ dir2/",

royriojas commented 8 years ago

Oh, thanks,

Will update the README with this info. Thank you very much.