aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2013-12-16 11:36:31 +0200
committerXhmikosR <[email protected]>2013-12-22 08:59:36 +0200
commit6e3ac8f2a466e27939710a8390b6f00e91538197 (patch)
tree267dc3a001a0cccc2d3989cf05179c7f97eedbf1
parent5f9695ae7cf66dd7f07a3cb3eb534e838d18c62b (diff)
downloadbootstrap-6e3ac8f2a466e27939710a8390b6f00e91538197.tar.xz
bootstrap-6e3ac8f2a466e27939710a8390b6f00e91538197.zip
js/.jscs.json: sort by name.
-rw-r--r--js/.jscs.json14
1 files changed, 7 insertions, 7 deletions
diff --git a/js/.jscs.json b/js/.jscs.json
index e8210ccde..c4cac13de 100644
--- a/js/.jscs.json
+++ b/js/.jscs.json
@@ -1,15 +1,15 @@
{
- "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
- "requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
+ "disallowKeywords": ["with"],
"requireLeftStickedOperators": [","],
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
- "requireRightStickedOperators": ["!"],
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
- "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
+ "requireLineFeedAtFileEnd": true,
+ "requireRightStickedOperators": ["!"],
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
- "disallowKeywords": ["with"],
- "validateLineBreaks": "LF",
- "requireLineFeedAtFileEnd": true
+ "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
+ "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
+ "requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
+ "validateLineBreaks": "LF"
}