0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/js/.jscsrc

24 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-12-07 01:51:38 +01:00
{
2014-02-19 13:28:05 +01:00
"disallowEmptyBlocks": true,
2013-12-25 20:22:52 +01:00
"disallowKeywords": ["with"],
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
2014-02-19 13:28:05 +01:00
"disallowMixedSpacesAndTabs": true,
"disallowMultipleLineStrings": true,
2014-03-09 10:10:15 +01:00
"disallowQuotedKeysInObjects": "allButReserved",
2013-12-25 20:22:52 +01:00
"disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
2013-12-09 06:25:25 +01:00
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"],
2013-12-25 20:22:52 +01:00
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
2014-02-27 16:38:46 +01:00
"disallowTrailingWhitespace": true,
"requireCamelCaseOrUpperCaseIdentifiers": true,
"requireLeftStickedOperators": [","],
2013-12-25 20:22:52 +01:00
"requireLineFeedAtFileEnd": true,
"requireRightStickedOperators": ["!"],
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
"requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
"validateIndentation": 2,
2014-02-19 08:11:25 +01:00
"validateLineBreaks": "LF",
"validateQuoteMarks": "'"
2013-12-07 01:51:38 +01:00
}