AlDanial

Results 89 comments of AlDanial

Do you have the Perl source code for ``cloc-1.87.exe``? Or tell me the date when it was created? The issue has to do with how the contents of ``FileCounter20201023142441.txt`` are...

Try this: create a new list file based on what cloc thinks the file names are. This command creates ``listfile.txt`` which will have the files cloc sees in the folder...

Here's what I get (Windows 10, US terminal setup) ![i534_cmd](https://user-images.githubusercontent.com/1459933/98403145-59f06800-201d-11eb-8738-ee1159b8cc8d.png)

Yes, this is an anticipated bug with roots back to SLOCCount, ref the comment block for function ``remove_haskell_comments()`` (which is included as an Elm filter) beginning at https://github.com/AlDanial/cloc/blob/9b1c380fdad27bcf9e86e5884467167b51873adf/cloc#L7361. It is...

Never noticed this before. The difference comes from how zero-sized files are handled. They appear in the ignored list but not in the list of text files leading to a...

Give be968f1 a try. I was able to load a JSON report file from Python (v3.8.3) without issues.

Sure, that measurement can be taken and recorded--but I don't think cloc needs to do that as a new feature. Instead, use cloc to collect the names of the source...

Unfortunately cloc's architecture would need a substantial re-write to identify documentation separately from comments. The closest option would be a new switch resembling ``--docstring-as-code`` to count documentation comments as code--but...

@CandyAngel : it is possible, and I can understand why stuff after ``__END__`` might not be comments. I need to come up with a reasonable switch name to implement this....

@CandyAngel Yes, the place to make the mod is ``sub read_file``. The user interface, as you hinted at, is the tricky part. I'm thinking along the lines of your suggestion...