freelyformd / github-todos

MVP: Analyse a repo's code for TODOs and FixMe comments & make github issues out of them
ISC License
3 stars 0 forks source link

Search repo source code for comments starting with specific keywords. #2

Closed epicallan closed 5 years ago

epicallan commented 6 years ago

The keywords we are considering at the moment are TODO & FIXME. After search return an array object of this type:

type KeyWord = "TODO"  | "FIXME";

repoIssues = Array<{
   commentText: string;
   lineNumber: number;
   keyWord: KeyWord;
   fileName: string;
}>