]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Move the quotes check to JSCS.
authorXhmikosR <xhmikosr@users.sourceforge.net>
Wed, 19 Feb 2014 07:11:25 +0000 (09:11 +0200)
committerXhmikosR <xhmikosr@users.sourceforge.net>
Fri, 28 Feb 2014 15:30:08 +0000 (17:30 +0200)
grunt/.jshintrc
js/.jscsrc
js/.jshintrc

index 15f3862a949790a81af4c1ea3139f518ea98abcf..26ebc7e3b9b2b9de0f8cfe3fffe8bb6704ae0c02 100644 (file)
@@ -7,7 +7,6 @@
   "noarg"    : true,
   "node"     : true,
   "nonbsp"   : true,
-  "quotmark" : "single",
   "strict"   : true,
   "trailing" : true,
   "undef"    : true
index 5fa37a0c9ed06b1de6df3e65bd92699cdf74cffc..7572481c7f4538d43ace1c5b754e35b3cc7aede6 100644 (file)
@@ -12,5 +12,6 @@
   "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
   "requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
   "validateIndentation": 2,
-  "validateLineBreaks": "LF"
+  "validateLineBreaks": "LF",
+  "validateQuoteMarks": "'"
 }
index 6a47fe03b717a61cba74aacf8e0233883d998ed2..e1ead322ea470d7c3072ed819b6fc4ebac47e169 100644 (file)
@@ -8,6 +8,5 @@
   "eqnull"   : true,
   "expr"     : true,
   "laxbreak" : true,
-  "quotmark" : "single",
   "validthis": true
 }