We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7260c13 commit 4863ec5Copy full SHA for 4863ec5
checkstyle/checks/IndentationCharacterCheck.hx
@@ -22,7 +22,7 @@ class IndentationCharacterCheck extends Check {
22
}
23
for (i in 0 ... _checker.lines.length) {
24
var line = _checker.lines[i];
25
- if (line.length > 0 && !re.match(line)) log('Wrong indentation character', i + 1, 1, Reflect.field(SeverityLevel, severity));
+ if (line.length > 0 && !re.match(line)) log('Wrong indentation character (${character})', i + 1, 1, Reflect.field(SeverityLevel, severity));
26
27
28
0 commit comments