diff options
Diffstat (limited to 'src/extract.sh')
-rwxr-xr-x | src/extract.sh | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/src/extract.sh b/src/extract.sh index 07346fc..cd5cb67 100755 --- a/src/extract.sh +++ b/src/extract.sh @@ -1,58 +1,9 @@ #!/usr/bin/env bash -# TODO Add support for ammendments -# -# The user can ammend more information to an issue which is located at -# a different place by referencing the issue's id. Example: -# -# ```bash -# #!/usr/bin/env bash -# -# set -efu -# -# ls -al -# # TODO Original issue -# # -# # @id original-issue -# -# ls -# # @original-issue more information on the issue -# ``` - -# TODO Only one issue per comment block -# -# Only the first TODO/FIXME inside a comment block should be considered -# as the start of an issue. - -# TODO Add support for other keywords -# -# Additionally to TODO, also FIXME should start an issue. There might -# be more interesting keywords. - -# TODO Add tags -# -# Users can add tags inside issue title and description. Tags are slugs -# and start with @ -# -# @assigned aforemny - -# TODO Add filter by tags -# -# Users can filter issues for tags with the option -t/--tag @tag. -# -# @assigned kirchner@posteo.de - -# TODO Generate and show hash for each issue - - set -efu git ls-files --cached --exclude-standard --other | while read -r input_file; do - # TODO Add support for all tree-grepper supported files - # - # tree-grepper supported files can be listed through `tree-grepper - # --languages`. ext= case $input_file in *.elm) ext="elm" ;; |