diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2023-10-02 16:36:40 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2023-10-02 16:36:40 +0200 |
commit | 53044dc28aefcc0572dc2416d58052035d5eb846 (patch) | |
tree | 3bba65f86380d06cd51f985bcc5091751b9d290a /src | |
parent | 1e49477c1268deaf519ad9ca051c3b34f503cb84 (diff) |
add issues to new code
Diffstat (limited to 'src')
-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" ;; |