Open
Description
Some of original code gave warnings but did not fix. For example, the various typos that were defined.
Other parts corrects things silently. For example (from original).
function bugsTypoWarn (file, data) {
var b = data.bugs
if (!b || typeof b !== "object") return
Object.keys(b).forEach(function (k) {
if (bugsTypos[k]) {
b[bugsTypos[k]] = b[k]
delete b[k]
}
})
}
scriptTyposWarn on the other hand, warns but does not correct.