Add ability to ignore warnings

Replace issue's array of entities with array of entity IDs
Improve issue ID hashing
This commit is contained in:
Quincy Morgan
2019-04-29 17:52:32 -07:00
parent 4215db39a2
commit 375779882d
34 changed files with 179 additions and 143 deletions

View File

@@ -123,7 +123,7 @@ export function uiCommit(context) {
// add counts of warnings generated by the user's edits
var warnings = context.validator()
.getIssuesBySeverity({ what: 'edited', where: 'all' }).warning;
.getIssuesBySeverity({ what: 'edited', where: 'all', includeIgnored: true }).warning;
var warningsByType = utilArrayGroupBy(warnings, 'type');
for (var warningType in warningsByType) {