Commit 22aa37eb authored by Robert Knight's avatar Robert Knight

Merge pull request #2804 from hypothesis/jscs-require-spaces-after-function

jscs: Require `function () {}`
parents 86256af9 5a514035
......@@ -6,5 +6,19 @@
"node_modules/**",
"h/static/scripts/vendor"
],
"maxErrors": 10
"maxErrors": 10,
"disallowSpacesInAnonymousFunctionExpression": null,
"disallowSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": true
},
"disallowSpacesInFunctionExpression": null,
"disallowSpacesInNamedFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"requireSpacesInFunctionDeclaration": null,
"requireSpacesInFunctionExpression": null,
"requireSpacesInAnonymousFunctionExpression": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment