This is a configuration issue with coffeelint (installed globally with npm).
I initially installed coffeelint to verify that my coffeescript code was correct and that there were no errors.
I installed coffeelint as instructed using:
sudo npm install -g coffeelint
coffeelint worked great when it worked offline with files. coffee.
However, when starting any Meteor project with coffeescript package, I got the above error.
On a whim, I thought the error might be due to a conflict with my existing node installation.
I decided to remove coffeelint first:
sudo npm uninstall -g coffeelint
and then deleted the leaderboard.js file previously created by the meteorite.
After restarting the meteor, the coffeescript example above worked as expected without errors.
AlexEberts
source share