Added list as an alias for ls#161
Conversation
remenoscodes
left a comment
There was a problem hiding this comment.
Thank you for implementing this — the symlink approach is clean and keeps the dispatcher pattern consistent.
A few small changes needed:
-
Commit message: This project uses Conventional Commits for automated changelog generation. Please update to:
feat: add list as alias for ls -
PR description: Could you add a brief body? Even a one-liner like "Adds
listas an alias forlsper #" helps with the changelog and traceability. -
Symlink trailing newline:
bin/git-issue-listis missing a trailing newline — POSIX convention is for text files to end with one. You can fix with:printf 'git-issue-ls\n' > bin/git-issue-list ln -sf git-issue-ls bin/git-issue-list
(Actually the symlink itself doesn't need it since it's not a text file — disregard this point, symlinks are fine as-is.)
Code-wise this is good to go. Just the commit message and PR description, then we can merge. Thanks!
No description provided.