Add `try` and `catch` to keywords

This commit is contained in:
Zlatan Vasović 2013-12-14 21:57:59 +01:00
parent 914f5e6a1d
commit 7f6cf5e50c
1 changed files with 1 additions and 1 deletions

View File

@ -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": ["!"],