]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Move `trailing` check to JSCS.
authorXhmikosR <xhmikosr@users.sourceforge.net>
Thu, 27 Feb 2014 15:38:46 +0000 (17:38 +0200)
committerXhmikosR <xhmikosr@users.sourceforge.net>
Fri, 28 Feb 2014 15:30:08 +0000 (17:30 +0200)
grunt/.jshintrc
js/.jscsrc

index d357212cc2272d653b66ca18911b78900ed8d7f2..f79ed0cac181387b203479dba214198aaaf8fc37 100644 (file)
@@ -7,6 +7,5 @@
   "node"     : true,
   "nonbsp"   : true,
   "strict"   : true,
-  "trailing" : true,
   "undef"    : true
 }
index ceaffbcd508d8751cbac15d0ca1d509b1b419d3f..2da777a2221225c10077125ad72a0b344cd324d5 100644 (file)
@@ -7,6 +7,7 @@
   "disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
   "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
   "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
+  "disallowTrailingWhitespace": true,
   "requireCamelCaseOrUpperCaseIdentifiers": true,
   "requireLeftStickedOperators": [","],
   "requireLineFeedAtFileEnd": true,