worm-scraper/.jscsrc
Domenic Denicola 3c2f67000e Initial commit
2015-05-05 22:47:45 +02:00

24 lines
616 B
Text

{
"esnext": true,
"preset": "crockford",
"requireMultipleVarDecl": null,
"disallowDanglingUnderscores": null,
"disallowKeywords": [
"with"
],
"disallowMultipleVarDecl": "strict",
"validateQuoteMarks": "\"",
"validateIndentation": 2,
"disallowSpaceAfterObjectKeys": true,
"disallowSpacesInCallExpression": true,
"disallowYodaConditions": true,
"maximumLineLength": {
"value": 120,
"allowUrlComments": true
},
"requireFunctionDeclarations": true,
"requireSemicolons": true,
"validateLineBreaks": "LF",
"validateParameterSeparator": ", ",
"requireBlocksOnNewline": 1
}