Last active
August 29, 2015 14:16
-
-
Save ngault/dc331eeb4fa1f54227fe to your computer and use it in GitHub Desktop.
Sublime Text snippet for JSDoc format top/file-level comment block
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
/** | |
* ${1:fileName.js} | |
* ${2:@version 1.2.3} | |
* ${3:@fileoverview Very brief description of file} | |
* | |
* ${4:@author Nicholas Nuss} | |
* ${5:@copyright © Stagirite, Inc. 2015} | |
* | |
* ${6:@requires 'none' or list of dependencies} | |
* @license placeholder | |
**/ | |
]]></content> | |
<tabTrigger>jstop</tabTrigger> | |
<description>Comment - Top/file-level</description> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment