aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZlatan Vasović <[email protected]>2013-12-14 21:57:59 +0100
committerZlatan Vasović <[email protected]>2013-12-14 21:57:59 +0100
commit7f6cf5e50c687bc369edbf8604bdffcc8b165fb1 (patch)
tree8771b37dfe310bdbfe019b38e245f28be87f4c30
parent914f5e6a1d6faf57988cd26c31200796a4b743a9 (diff)
downloadbootstrap-7f6cf5e50c687bc369edbf8604bdffcc8b165fb1.tar.xz
bootstrap-7f6cf5e50c687bc369edbf8604bdffcc8b165fb1.zip
Add `try` and `catch` to keywords
-rw-r--r--js/.jscs.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/.jscs.json b/js/.jscs.json
index 2f04d9cd6..e02344fd5 100644
--- a/js/.jscs.json
+++ b/js/.jscs.json
@@ -1,5 +1,5 @@
{
- "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return"],
+ "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
"requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"requireRightStickedOperators": ["!"],