Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-10-04 | drop shell script | Alexander Foremny | |
2023-10-02 | add issues to new code | Fabian Kirchner | |
2023-09-29 | fix extracting body for shell issues | Alexander Foremny | |
The underlying problem is that tree-sitter does not allow for matching sibling nodes. So any issues comprised of line comments (vs. block comments) suffered from this issue, independent of the language (shell). Thus, we manually merge such sibling matches after running tree-grepper. | |||
2023-09-28 | add list, show commands | Alexander Foremny | |
The `list` command can be omitted and is the default. The `show` command retains past output. ```console $ anissue -h Usage: anissue anissue list anissue show ``` The implementation uses docopts, the shell variant of docopt [1]. Because of that, wrapping with `--argv0 ''` is necessary when packaging. [1] http://docopt.org/ | |||
2023-09-28 | split augmentation and output into separate passes | Alexander Foremny | |
2023-09-28 | remove unnessary quoting when extracting fields from JSON | Alexander Foremny | |
2023-09-27 | assign and schedule issues | Fabian Kirchner | |
2023-09-27 | add some issues | Fabian Kirchner | |
2023-09-27 | use git ls-files to get list of files to look for issues | Fabian Kirchner | |
2023-09-06 | add support for .sh files | Alexander Foremny | |
2023-09-06 | add issue to support all tree-grepper supported languages | Alexander Foremny | |
2023-09-06 | default to scanning . | Alexander Foremny | |
2023-09-06 | ignore hidden and backup files | Alexander Foremny | |
2023-09-05 | refactor extract-generic.sh | Alexander Foremny | |
2023-09-05 | remove trailing whitespace from extract.sh | Alexander Foremny | |
2023-09-05 | *.sh -> src | Alexander Foremny | |