eslintrc: accept spaces after function keyword in anonymous functions

Anonymous functions `function () {}` and `function() {}` will both be accepted by eslint.
This commit is contained in:
Anthony J. Thibault 2016-08-08 15:20:58 -07:00
parent f0338ceb49
commit d36e60bbaa

View file

@ -72,6 +72,6 @@ module.exports = {
"spaced-comment": ["error", "always", {
"line": { "markers": ["/"] }
}],
"space-before-function-paren": ["error", {"anonymous": "always", "named": "never"}]
"space-before-function-paren": ["error", {"anonymous": "ignore", "named": "never"}]
}
};