aboutsummaryrefslogtreecommitdiffstats
path: root/app/Issue
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2023-12-12 03:09:15 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2023-12-12 03:47:46 +0100
commit26c6755bb8836f69f04c7c427e075385cdc0070e (patch)
treea53165d75bd353f5c5a689f73d3b277aa7ce3266 /app/Issue
parent90a988e9a7fa93c8e233850a68214ccd4cb8b11c (diff)
chore: add issue marker "XXX"
Diffstat (limited to 'app/Issue')
-rw-r--r--app/Issue/Text.hs7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/Issue/Text.hs b/app/Issue/Text.hs
index a7697d5..e61cbd4 100644
--- a/app/Issue/Text.hs
+++ b/app/Issue/Text.hs
@@ -9,9 +9,10 @@ import Data.Text qualified as T
issueMarkers :: [T.Text]
issueMarkers =
- [ "TODO",
- "FIXME",
- "QUESTION"
+ [ "FIXME",
+ "QUESTION",
+ "TODO",
+ "XXX"
]
stripIssueMarkers :: T.Text -> ([T.Text], T.Text)