Ericsson / CodeCheckerEclipsePlugin

This is an Eclipse plugin that shows C/C++ static analysis results found by Clang Static Analyzer and Clang Tidy
Eclipse Public License 1.0
32 stars 13 forks source link

Checker names in ReportListView #75

Open whisperity opened 8 years ago

whisperity commented 8 years ago

Currently checker names redundantly "carry" the namespace when someone is navigating the tree. E.g. in the core folder you have core.DivisionByZero. The core. from the latter one should be removed, as I already know from the parent "folder" which category this checker belongs to – redundancy juts bloats the interface. (This, of course, applies to checkers with multiple parents in the hierarchy.)

Also, the plugin seems only to consider . (dot) as the hierarchical separator while some checkers use - (hyphen). Is this a lack of guideline in CodeChecker, @dkrupp?