1
0
Fork 0

Merge pull request #2978 from cuberite/checker

Style checker - Prevent whitespace-only lines
This commit is contained in:
LogicParrot 2016-02-07 08:33:36 +02:00
commit 837b3a6cdf
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ local g_ViolationPatterns =
{"[^%s]\t+[^%s]", "Aligning with a tab"},
-- Check against trailing whitespace:
{"[^%s]%s+\n", "Trailing whitespace"},
{"%s+\n", "Trailing whitespace or whitespace-only line"},
-- Check that all "//"-style comments have at least two spaces in front (unless alone on line):
{"[^%s] //", "Needs at least two spaces in front of a \"//\"-style comment"},