summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLogicParrot <LogicParrot@users.noreply.github.com>2016-02-06 18:04:43 +0100
committerLogicParrot <LogicParrot@users.noreply.github.com>2016-02-06 18:07:03 +0100
commit0709f76478a53e926ae91193889393f757fc3b91 (patch)
tree5417cc6d93fb30cdb415924b10413656498e981b
parentMerge pull request #2974 from LogicParrot/perl (diff)
downloadcuberite-0709f76478a53e926ae91193889393f757fc3b91.tar
cuberite-0709f76478a53e926ae91193889393f757fc3b91.tar.gz
cuberite-0709f76478a53e926ae91193889393f757fc3b91.tar.bz2
cuberite-0709f76478a53e926ae91193889393f757fc3b91.tar.lz
cuberite-0709f76478a53e926ae91193889393f757fc3b91.tar.xz
cuberite-0709f76478a53e926ae91193889393f757fc3b91.tar.zst
cuberite-0709f76478a53e926ae91193889393f757fc3b91.zip
-rwxr-xr-xsrc/CheckBasicStyle.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CheckBasicStyle.lua b/src/CheckBasicStyle.lua
index 81968688c..bd9430e59 100755
--- a/src/CheckBasicStyle.lua
+++ b/src/CheckBasicStyle.lua
@@ -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"},