slashnick
slashnick

Reputation: 26559

Is there a JSHint or JSLint plugin for IntelliJ?

I know IntelliJ 11 has added support for JSLint, but is there a plugin for older versions that will validate js files against either JSLint or JSHint? Ideally one that will inspect the code as it is typed rather than having to be run separately.

Upvotes: 1

Views: 2523

Answers (2)

pauldcomanici
pauldcomanici

Reputation: 601

I found a solution, tested with InteliJ IDEA 10.5.4 and it works. You can find step by step instructions at: http://derekscrib.wordpress.com/2011/11/18/jslint-external-tool-for-intellij/

Upvotes: 0

CrazyCoder
CrazyCoder

Reputation: 402591

Try IntelliJ IDEA 11.1 EAP, it supports both JSLint and JSHint:

jshint

Upvotes: 1

Related Questions