-
Notifications
You must be signed in to change notification settings - Fork 49
Open
Labels
Description
After noticing that enry commands ignore files without extension, I Wrote a simple PHP file:
<?php
echo "Hello";
?>Created files with the same content but different extensions:
.
├── hello.c
├── hello.css
├── hello.html
└── hello.sql
enry --breakdown returns:
39.02% CSS
30.49% C
30.49% HTML
C
hello.c
CSS
hello.css
HTML
hello.html
Don't know if that's the desired output.