-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
flodoc is a fork of flotate that adds support for JSDoc! Most of the work here was wrestling with Esprima to find comments. flotate's fancy-function-annotation feature is pretty inconsistent, because where Esprima inserts precedingComments and trailingComments is pretty inconsistent, so I had to write code to manually search for preceding comments.
- Loading branch information
Showing
20 changed files
with
589 additions
and
231 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"name": "flotate", | ||
"version": "0.1.0", | ||
"name": "flodoc", | ||
"version": "0.2.0", | ||
"description": "", | ||
"main": "src/flotate.js", | ||
"main": "src/flodoc.js", | ||
"bin": "src/cli.js", | ||
"directories": { | ||
"test": "test" | ||
|
@@ -20,6 +20,7 @@ | |
"scripts": { | ||
"test": "mocha test/spec/*" | ||
}, | ||
"author": "Jarno Rantanen <[email protected]> (http://jrw.fi/)", | ||
"author": "Guangcong Luo <[email protected]> (http://guangcongluo.com)", | ||
"contributors": ["Jarno Rantanen <[email protected]> (http://jrw.fi/)"], | ||
"license": "MIT" | ||
} |
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
Oops, something went wrong.