twbs--bootstrap/js/.jscsrc

17 lines
931 B
Plaintext
Raw Normal View History

2013-12-07 00:51:38 +00:00
{
2013-12-25 19:22:52 +00:00
"disallowKeywords": ["with"],
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
2013-12-09 05:25:25 +00:00
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
2013-12-25 19:22:52 +00:00
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"requireLeftStickedOperators": [","],
2013-12-25 19:22:52 +00:00
"requireLineFeedAtFileEnd": true,
"requireRightStickedOperators": ["!"],
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
"requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
"validateIndentation": 2,
2013-12-25 19:22:52 +00:00
"validateLineBreaks": "LF"
2013-12-07 00:51:38 +00:00
}