user1647411
user1647411

Reputation:

Syntax Checking for CoffeeScript

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

Answers (5)

Jonathan Tran
Jonathan Tran

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

Andreas
Andreas

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

jaime
jaime

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

asgeo1
asgeo1

Reputation: 9078

If you're OK with using Vim, just add the vim-coffee-script and syntastic plugins

Upvotes: 1

sites
sites

Reputation: 21795

See gVim, and install this plugin for syntax checkong, and this one for syntax coloring.

This is a lightweight, scalable, and cheap option.

Upvotes: 1

Related Questions