twbs--bootstrap/js/.jscsrc

24 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-12-07 00:51:38 +00:00
{
2014-02-19 12:28:05 +00:00
"disallowEmptyBlocks": true,
2013-12-25 19:22:52 +00:00
"disallowKeywords": ["with"],
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
2014-02-19 12:28:05 +00:00
"disallowMixedSpacesAndTabs": true,
"disallowMultipleLineStrings": true,
2014-03-09 09:10:15 +00:00
"disallowQuotedKeysInObjects": "allButReserved",
2013-12-25 19:22:52 +00:00
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
2013-12-09 05:25:25 +00:00
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
2013-12-25 19:22:52 +00:00
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
2014-02-27 15:38:46 +00:00
"disallowTrailingWhitespace": true,
"requireCamelCaseOrUpperCaseIdentifiers": true,
"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,
2014-02-19 07:11:25 +00:00
"validateLineBreaks": "LF",
"validateQuoteMarks": "'"
2013-12-07 00:51:38 +00:00
}