mirror of https://github.com/voidlizard/hbs2
83 lines
1.8 KiB
Plaintext
83 lines
1.8 KiB
Plaintext
|
|
|
|
fixme-comments "--"
|
|
|
|
fixme-prefix FIXME: bugs issues
|
|
fixme-prefix TODO: bugs issues
|
|
fixme-prefix REVIEW: review
|
|
fixme-prefix PR: pr
|
|
|
|
fixme-files **/*.hs docs/devlog.md
|
|
|
|
fixme-files **/*.cabal
|
|
|
|
fixme-files docs/pep*.txt
|
|
fixme-files docs/drafts/**/*.txt
|
|
fixme-files docs/notes/**/*.txt
|
|
fixme-files docs/pr/**/*.txt
|
|
fixme-files docs/todo/**/*.txt
|
|
fixme-files docs/notes/**/*.txt
|
|
|
|
fixme-files-ignore .direnv/** dist-newstyle/**
|
|
|
|
fixme-id-show-len 10
|
|
|
|
|
|
fixme-attribs assigned workflow resolution cat scope
|
|
|
|
fixme-value-set workflow new backlog wip test fixed done
|
|
|
|
fixme-value-set cat bug feat refactor
|
|
|
|
fixme-value-set scope mvp-0 mvp-1 backlog
|
|
|
|
|
|
[ fixme-report all json
|
|
(render builtin:microstache report-wip.tpl)
|
|
(post builtin:columns | 10 8 8 10 12 _)
|
|
; (query ~workflow:backlog)
|
|
]
|
|
|
|
|
|
[ fixme-report open json
|
|
(render builtin:microstache report-wip.tpl)
|
|
(post builtin:columns | 10 8 8 10 12 _)
|
|
(query ~workflow:backlog)
|
|
(query ~workflow:done)
|
|
(query ~workflow:test)
|
|
]
|
|
|
|
[ fixme-report backlog json
|
|
(render builtin:microstache report-wip.tpl)
|
|
(post builtin:columns | 10 8 8 10 12 _)
|
|
(query workflow:backlog)
|
|
]
|
|
|
|
|
|
[ fixme-report wip json
|
|
(render builtin:microstache report-wip.tpl)
|
|
(post builtin:columns | 10 8 8 10 12 _)
|
|
(query ?workflow:test)
|
|
(query ?workflow:wip)
|
|
(query ?workflow:fixed)
|
|
]
|
|
|
|
|
|
[ fixme-report review json
|
|
(render builtin:microstache report-wip.tpl)
|
|
(post builtin:columns | 10 8 8 10 12 _)
|
|
(query tag:REVIEW:)
|
|
]
|
|
|
|
[ fixme-report wip-json json
|
|
]
|
|
|
|
fixme-log-macro backlog (fixme-set "workflow" "backlog" "$1")
|
|
fixme-log-macro test (fixme-set "workflow" "test" "$1")
|
|
fixme-log-macro wip (fixme-set "workflow" "wip" "$1")
|
|
fixme-log-macro done (fixme-set "workflow" "done" "$1")
|
|
fixme-log-macro assign (fixme-set "assigned" "$1" "$2")
|
|
|
|
fixme-log-macro scope (fixme-set "scope" "$1" "$2")
|
|
|