aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2023-10-02add issues to new codeLibravatar Fabian Kirchner
2023-09-29fix extracting body for shell issuesLibravatar 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-28add list, show commandsLibravatar 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-28split augmentation and output into separate passesLibravatar Alexander Foremny
2023-09-28remove unnessary quoting when extracting fields from JSONLibravatar Alexander Foremny
2023-09-27assign and schedule issuesLibravatar Fabian Kirchner
2023-09-27add some issuesLibravatar Fabian Kirchner
2023-09-27use git ls-files to get list of files to look for issuesLibravatar Fabian Kirchner
2023-09-06add support for .sh filesLibravatar Alexander Foremny
2023-09-06add issue to support all tree-grepper supported languagesLibravatar Alexander Foremny
2023-09-06default to scanning .Libravatar Alexander Foremny
2023-09-06ignore hidden and backup filesLibravatar Alexander Foremny
2023-09-05refactor extract-generic.shLibravatar Alexander Foremny
2023-09-05remove trailing whitespace from extract.shLibravatar Alexander Foremny
2023-09-05*.sh -> srcLibravatar Alexander Foremny