2013-12-06 16:51:38 -08:00
|
|
|
{
|
2013-12-14 21:57:59 +01:00
|
|
|
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
|
2013-12-06 16:51:38 -08:00
|
|
|
"requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
|
2013-12-15 20:04:32 +01:00
|
|
|
"requireLeftStickedOperators": [","],
|
2013-12-06 16:51:38 -08:00
|
|
|
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
|
|
|
|
"requireRightStickedOperators": ["!"],
|
|
|
|
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
|
|
|
|
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
|
|
|
|
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
|
|
|
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
|
|
|
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
|
|
|
"disallowKeywords": ["with"],
|
|
|
|
"validateLineBreaks": "LF",
|
|
|
|
"requireLineFeedAtFileEnd": true
|
|
|
|
}
|