mirror of
https://github.com/scratchfoundation/scratch-html5.git
synced 2024-11-28 10:05:55 -05:00
26 lines
677 B
Text
26 lines
677 B
Text
|
{
|
||
|
"requireCurlyBraces": [
|
||
|
"for",
|
||
|
"while",
|
||
|
"do",
|
||
|
"try",
|
||
|
"catch"
|
||
|
],
|
||
|
"requireSpaceAfterKeywords": [
|
||
|
"default"
|
||
|
],
|
||
|
"requireSpacesInFunctionExpression": {
|
||
|
"beforeOpeningCurlyBrace": true
|
||
|
},
|
||
|
"disallowSpacesInFunctionExpression": {
|
||
|
"beforeOpeningRoundBrace": true
|
||
|
},
|
||
|
"disallowEmptyBlocks": true,
|
||
|
"disallowSpaceAfterObjectKeys": true,
|
||
|
"requireCommaBeforeLineBreak": true,
|
||
|
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
||
|
"validateIndentation": 4,
|
||
|
"disallowMixedSpacesAndTabs": true,
|
||
|
"disallowTrailingWhitespace": true,
|
||
|
"safeContextKeyword": "self"
|
||
|
}
|