Merge pull request #1564 from adamjimenez/patch-16

Include css rule name with lint results
This commit is contained in:
Harutyun Amirjanyan 2013-08-23 09:15:14 -07:00
commit 8bf4a0e604

View file

@ -84,7 +84,8 @@ oop.inherits(Worker, Mirror);
row: msg.line - 1,
column: msg.col - 1,
text: msg.message,
type: infoRules[msg.rule.id] ? "info" : msg.type
type: infoRules[msg.rule.id] ? "info" : msg.type,
rule: msg.rule.name
}
}));
};