flosse / sloc

simple tool to count SLOC (source lines of code)
MIT License
944 stars 84 forks source link

doc comments #52

Open flosse opened 9 years ago

flosse commented 9 years ago

at the moment we have single line and block comments but I'd like to add support for doc comments too. e.g.: for java:

// line comment
/** doc comment */
/* block comment */

or rust:

// line comment
/// doc comment

what do you think?

jmatsushita commented 8 years ago

That sounds like a good idea. Also I arrived here as I was wondering about another form of documentation which is markdown files. What do you think?