Brackets extension to generate JSDoc annotations
Find a file
2014-04-16 09:55:03 +02:00
thirdparty Initial esprima annotator 2014-04-15 16:06:27 +02:00
annotator.js Initial esprima annotator 2014-04-15 16:06:27 +02:00
LICENCE Create LICENCE 2012-12-17 13:26:04 -08:00
main.js Fixed issue when annotating last annotatable in document 2014-04-16 09:55:03 +02:00
package.json upadated version number and readme 2014-03-26 10:30:02 +01:00
README.md upadated version number and readme 2014-03-26 10:30:02 +01:00
test_dummy.js Initial esprima annotator 2014-04-15 16:06:27 +02:00

Brackets JSDoc Annotate

A brackets extension to generate JSDoc annotations for your functions.

To install, place the annotate folder inside the brackets/src/extensions/user folder.

Compatible with Brackets Sprint10 and higher

Usage

Open a project in Brackets, place your cursor before, or on the line of a function definition, and select Annotate form the Edit menu.

Alternatively, use the keyboard shortcut CTRL+Alt+A on Windows, or +Alt+A on Mac.

This will create a JSDoc like annotation according to the function signature. It will add @private if the function starts with an underscore. It will create a @param for each parameter.