diff options
author | Mattes D <github@xoft.cz> | 2014-08-28 15:53:26 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-08-28 15:53:26 +0200 |
commit | 9b68ff2656d5e662d33c670ee5fa20dd12b8264f (patch) | |
tree | 231f19e9dc82941bc1a588a08e4fb944f0528f89 /src | |
parent | Fixed spaces after "template" keyword. (diff) | |
download | cuberite-9b68ff2656d5e662d33c670ee5fa20dd12b8264f.tar cuberite-9b68ff2656d5e662d33c670ee5fa20dd12b8264f.tar.gz cuberite-9b68ff2656d5e662d33c670ee5fa20dd12b8264f.tar.bz2 cuberite-9b68ff2656d5e662d33c670ee5fa20dd12b8264f.tar.lz cuberite-9b68ff2656d5e662d33c670ee5fa20dd12b8264f.tar.xz cuberite-9b68ff2656d5e662d33c670ee5fa20dd12b8264f.tar.zst cuberite-9b68ff2656d5e662d33c670ee5fa20dd12b8264f.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/CheckBasicStyle.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CheckBasicStyle.lua b/src/CheckBasicStyle.lua index bf81a7cd5..b244b1fbc 100644 --- a/src/CheckBasicStyle.lua +++ b/src/CheckBasicStyle.lua @@ -108,7 +108,7 @@ local g_ViolationPatterns = -- Check that all commas have spaces after them and not in front of them: {" ,", "Extra space before a \",\""}, - {",[^%s\"%%]", "Needs a space after a \",\""}, -- Report all except >> "," << needed for splitting and >>,%s<< needed for formatting + {",[^%s\"%%\']", "Needs a space after a \",\""}, -- Report all except >> "," << needed for splitting and >>,%s<< needed for formatting -- Check that opening braces are not at the end of a code line: {"[^%s].-{\n?$", "Brace should be on a separate line"}, @@ -119,6 +119,7 @@ local g_ViolationPatterns = {"while%(", "Needs a space after \"while\""}, {"switch%(", "Needs a space after \"switch\""}, {"catch%(", "Needs a space after \"catch\""}, + {"template<", "Needs a space after \"template\""}, -- No space after keyword's parenthesis: {"[^%a#]if %( ", "Remove the space after \"(\""}, |