Into an issue with title named: <keyword> issues from source code and with extracted code issues as comments. For keyword TODO, title would be; TODO issues from source code
The comment item could have text of the form:
<fileName> : <lineNumber> <commentText>
So your function will return a list of issue of the form:
type Comment = string;
type Title = string;
interface IssueWithComments {
title: Title
comments: Comment[]
};
transform a list of
RepoIssues[]
i.eInto an issue with title named:
<keyword> issues from source code
and with extracted code issues as comments. For keyword TODO, title would be;TODO issues from source code
The comment item could have text of the form:
<fileName> : <lineNumber> <commentText>
So your function will return a list of issue of the form:
Write this in
lib/github/issue-presenter.ts