aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2014-02-19 09:11:25 +0200
committerXhmikosR <[email protected]>2014-02-28 17:30:08 +0200
commitd65f749390a32ec8c7abb09199bf31a7cca415ac (patch)
treef5ab56a45a2caefe557a48b699aac8e711728c13
parent537e10033e055bc060ecbd57a678e6cfcfffed30 (diff)
downloadbootstrap-d65f749390a32ec8c7abb09199bf31a7cca415ac.tar.xz
bootstrap-d65f749390a32ec8c7abb09199bf31a7cca415ac.zip
Move the quotes check to JSCS.
-rw-r--r--grunt/.jshintrc1
-rw-r--r--js/.jscsrc3
-rw-r--r--js/.jshintrc1
3 files changed, 2 insertions, 3 deletions
diff --git a/grunt/.jshintrc b/grunt/.jshintrc
index 15f3862a9..26ebc7e3b 100644
--- a/grunt/.jshintrc
+++ b/grunt/.jshintrc
@@ -7,7 +7,6 @@
"noarg" : true,
"node" : true,
"nonbsp" : true,
- "quotmark" : "single",
"strict" : true,
"trailing" : true,
"undef" : true
diff --git a/js/.jscsrc b/js/.jscsrc
index 5fa37a0c9..7572481c7 100644
--- a/js/.jscsrc
+++ b/js/.jscsrc
@@ -12,5 +12,6 @@
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
"requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
"validateIndentation": 2,
- "validateLineBreaks": "LF"
+ "validateLineBreaks": "LF",
+ "validateQuoteMarks": "'"
}
diff --git a/js/.jshintrc b/js/.jshintrc
index 6a47fe03b..e1ead322e 100644
--- a/js/.jshintrc
+++ b/js/.jshintrc
@@ -8,6 +8,5 @@
"eqnull" : true,
"expr" : true,
"laxbreak" : true,
- "quotmark" : "single",
"validthis": true
}