-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Currently, the report for star-gazers lists the user-names of the people that have starred the repo, but the file does not contain any other detail about them. Include the total number property in the object that's stored, and convert the array into array.
//currently the format for file: `<repoName>.starGazers.report.json`
["user1","user2"]change it to
// fileName: `<repoName>.report.json`
{
"starGazer": {
"count":2,
"users":["user1","user2"]
}
}Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers