Reputation:
I searched google and i didn't found an IDE that would allow Syntax Checking specifically. Is there a way to check syntax in VS or other tool?
Upvotes: 1
Views: 2089
Reputation: 15276
If you're into Emacs, there's an Emacs major mode for CoffeeScript.
Here is the blog post announcing its release.
Upvotes: 0
Reputation: 1622
Even though not free, Webstorm comes with good support for Coffeescript out of the box.
By far the IDE I prefer most developing Coffe/Javascript at the moment.
Upvotes: 3
Reputation: 42031
+1 on vim-coffee-script and syntastic.
Have you checked CoffeeScript's wiki? There are few plugins that add syntax checking:
You might be interested in using a command line tool like CoffeeLint, which offers optional validation rules. You can add it to your development process writing your own script to watch for changes in files or using tools like Grunt.
Upvotes: 1
Reputation: 9078
If you're OK with using Vim, just add the vim-coffee-script and syntastic plugins
Upvotes: 1