Merge "Disallow space between a function & opening paren"

This commit is contained in:
Jenkins 2016-11-02 16:35:28 +00:00 committed by Gerrit Code Review
commit 64a07dcdfd
1 changed files with 6 additions and 6 deletions

View File

@ -198,6 +198,12 @@ rules:
# http://eslint.org/docs/rules/no-unexpected-multiline
no-unexpected-multiline: 0
# Disallow space before function opening parenthesis
# http://eslint.org/docs/rules/space-before-function-paren
space-before-function-paren:
- 2
- "never"
#############################################################################
# Best Practices
#############################################################################
@ -861,12 +867,6 @@ rules:
- 2
- "always"
# Require or disallow space before function opening parenthesis
# http://eslint.org/docs/rules/space-before-function-paren
space-before-function-paren:
- 0
- "always"
# require or disallow spaces inside parentheses
# http://eslint.org/docs/rules/space-in-parens
space-in-parens: