[x] Contains Only One Commit(git reset then git commit)
[x] Build Success(npm run build)
[x] Lint Success(npm run lint to check, npm run fix to fix)
[x] File Integrity(git add -A or add rules at .gitignore file)
[ ] Add Test(if relevant, npm run test to check)
[ ] Add Demo(if relevant)
For now I've just included this in core with API access as that's all I really needed it for, but am open to adding in CLI support if you feel it needs it.
It would have been nice to include the anys for each file as well however I found I was running up against memory and performance issues for large projects pretty quickly by retaining all of these per file, so it's just including the correct and total counts per file, which I think are the main things to be looking for anyway.
Fixes(if relevant):
36
Checks
git reset
thengit commit
)npm run build
)npm run lint
to check,npm run fix
to fix)git add -A
or add rules at.gitignore
file)npm run test
to check)For now I've just included this in core with API access as that's all I really needed it for, but am open to adding in CLI support if you feel it needs it.
It would have been nice to include the
anys
for each file as well however I found I was running up against memory and performance issues for large projects pretty quickly by retaining all of these per file, so it's just including the correct and total counts per file, which I think are the main things to be looking for anyway.