@@ -41,23 +41,27 @@ var summary = analyze( 'var beep = "boop";' );
4141 "comments": { // comment summary
4242 "count": 0, // total number of comments
4343 "length": 0, // total combined comment length
44+ "whitespace": 0, // total number of whitespace characters
4445 "lines": 0, // total number of comment lines
4546 "inline": 0, // total number of inline comments
4647 "block": { // block comment summary
4748 "count": 0, // total number of block comments
4849 "length": 0, // total combined block comment length
50+ "whitespace": 0, // total number of whitespace characters
4951 "lines": 0, // total number of block comment lines
5052 "inline": 0 // total number of inline block comments
5153 },
5254 "line": { // line comment summary
5355 "count": 0, // total number of line comments
5456 "length": 0, // total combined line comment length
57+ "whitespace": 0, // total number of whitespace characters
5558 "lines": 0, // total number of line comment lines
5659 "inline": 0 // total number of inline line comments
5760 },
5861 "jsdoc": { // JSDoc comment summary
5962 "count": 0, // total number of JSDoc comments
6063 "length": 0, // total combined JSDoc comment length
64+ "whitespace": 0, // total number of whitespace characters
6165 "lines": 0, // total number of JSDoc comment lines
6266 "inline": 0 // total number of inline JSDoc comments
6367 },
0 commit comments