Move "space-before-function-paren" lint rule to list of rules waiting on a formatter (#19807)

This commit is contained in:
Andy 2017-11-07 09:45:58 -08:00 committed by GitHub
parent b2b54cbf5c
commit 2f2a82b91d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,6 @@
"ordered-imports": false,
"prefer-conditional-expression": false,
"radix": false,
"space-before-function-paren": false,
"trailing-comma": false,
// These should be done automatically by a formatter. https://github.com/Microsoft/TypeScript/issues/18340
@ -104,6 +103,7 @@
"eofline": false,
"max-line-length": false,
"no-consecutive-blank-lines": false,
"space-before-function-paren": false,
// Not doing
"ban-comma-operator": false,