-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from salihozkara/salihozkara/refactoring
Salihozkara/refactoring
- Loading branch information
Showing
45 changed files
with
564 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,31 @@ | ||
# Roadmap | ||
|
||
The following is a roadmap for the development of MetricHunter: | ||
|
||
## Priority 1: Improve search functionality | ||
|
||
* Add advanced search options, such as the ability to search by date range or by specific users | ||
* Improve the accuracy and relevance of search results | ||
|
||
## Priority 2: Enhance repository metrics | ||
* Add new metrics, such as the number of contributors to a repository or the number of issues that have been opened and closed | ||
* | ||
|
||
* Add new metrics, such as the number of contributors to a repository or the number of issues that have been opened and | ||
closed | ||
* | ||
|
||
## Priority 3: Add collaboration features | ||
|
||
* Add tools for team communication and project management, such as kanban boards and project milestones | ||
|
||
## Priority 4: Expand learning resources | ||
* Add more tutorials, articles, and other resources to help developers improve their skills and stay up-to-date on the latest developments in their field | ||
|
||
* Add more tutorials, articles, and other resources to help developers improve their skills and stay up-to-date on the | ||
latest developments in their field | ||
|
||
## Priority 5: Improve user experience | ||
|
||
* Redesign the user interface to make it more intuitive and user-friendly | ||
* Add new features to make it easier for developers to find and explore repositories on GitHub | ||
|
||
This roadmap is subject to change based on the goals and priorities of the MetricHunter project. However, these are the key areas that MetricHunter will focus on in order to continue improving and evolving as a tool for developers. | ||
This roadmap is subject to change based on the goals and priorities of the MetricHunter project. However, these are the | ||
key areas that MetricHunter will focus on in order to continue improving and evolving as a tool for developers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,4 @@ | |
|
||
public interface ISourceMonitorMetric : IMetric | ||
{ | ||
static IReadOnlyList<string> MatchedMetricNames { get; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace MetricHunter.Application.Results; | ||
|
||
public class NullResult : IResult | ||
{ | ||
public Dictionary<string, string> ToDictionary() | ||
{ | ||
return new Dictionary<string, string>(); | ||
} | ||
|
||
public List<Dictionary<string, string>> ToDictionaryListByTopics() | ||
{ | ||
return new List<Dictionary<string, string>>(); | ||
} | ||
|
||
public bool IsEmpty() | ||
{ | ||
return true; | ||
} | ||
} |
Oops, something went wrong.