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 4a71560 commit bd93768Copy full SHA for bd93768
checkstyle/checks/LeftCurlyCheck.hx
@@ -212,7 +212,6 @@ class LeftCurlyCheck extends Check {
212
return;
213
}
214
logErrorIf ((option == EOL), 'Left curly should be at EOL (only linebreak or comment after curly)', pos);
215
- logErrorIf ((lineLength > maxLineLength), 'Left curly placement exceeds ${maxLineLength} character limit', pos);
216
logErrorIf ((!curlyOnNL), 'Left curly should be on new line (only whitespace before curly)', pos);
217
logErrorIf ((option != NL), 'Left curly unknown option ${option}', pos);
218
0 commit comments