-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jscsrc
executable file
·32 lines (31 loc) · 933 Bytes
/
.jscsrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"disallowKeywords": ["with"],
"disallowKeywordsOnNewLine": ["else","catch"],
"disallowNewlineBeforeBlockStatements": true,
"disallowSpaceAfterObjectKeys": "ignoreMultiLine",
"disallowSpaceAfterPrefixUnaryOperators": true,
"disallowSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
},
"disallowSpacesInsideParentheses": true,
"disallowTrailingComma":true,
"disallowTrailingWhitespace": "ignoreEmptyLines",
"maximumLineLength": 180,
"requireBlocksOnNewline":true,
"requireCamelCaseOrUpperCaseIdentifiers": true,
"requireCapitalizedConstructors": true,
"validateIndentation": "\t",
"disallowMixedSpacesAndTabs": "smart",
"requireCurlyBraces": true,
"requireAlignedObjectValues": "all",
"requireSemicolons": true,
"validateLineBreaks": "LF",
"excludeFiles": [
"test/.tmp/**",
"test/class.puml/**",
"node_modules/**",
"d/e.content.txt",
"d/e.json"
]
}