Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSDoc support in IntelliJ IDEA

Is there documentation for what JSDoc subset, superset, or mix of the two IntelliJ supports? My motivation for using JSDoc is two-fold:

  1. For developers: so IntelliJ can provide better code-completion, code checking, error checking, etc.
  2. For runtime efficiency: using the Closure compiler.

For #1 above, it is important for me to use JSDoc markup that is supported by IntelliJ, and until now figuring this out has mostly been a trial and error process.

like image 948
avernet Avatar asked Nov 03 '10 22:11

avernet


1 Answers

Based on what little information is available in the WebStorm documentation, it looks like IntelliJ IDEA supports the entire JSDoc set. The only other note in the documentation is on viewing inline documentation which only points at the JSDoc SourceForge page.

like image 169
NT3RP Avatar answered Oct 04 '22 15:10

NT3RP