diff options
| author | Zlatan Vasović <[email protected]> | 2013-12-14 21:57:59 +0100 |
|---|---|---|
| committer | Zlatan Vasović <[email protected]> | 2013-12-14 21:57:59 +0100 |
| commit | 7f6cf5e50c687bc369edbf8604bdffcc8b165fb1 (patch) | |
| tree | 8771b37dfe310bdbfe019b38e245f28be87f4c30 | |
| parent | 914f5e6a1d6faf57988cd26c31200796a4b743a9 (diff) | |
| download | bootstrap-7f6cf5e50c687bc369edbf8604bdffcc8b165fb1.tar.xz bootstrap-7f6cf5e50c687bc369edbf8604bdffcc8b165fb1.zip | |
Add `try` and `catch` to keywords
| -rw-r--r-- | js/.jscs.json | 2 |
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": ["!"], |
