0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/js/.jscs.json

16 lines
934 B
JSON
Raw Normal View History

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