From 0038cfe96dbb5762f78037a9fad14aa501d0dd9d Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Fri, 8 Jan 2016 01:10:06 -0500 Subject: [PATCH] Remove whitespace before parens Having a space here is a bit distracting for 2 reasons: 1) This rule is about using soft tabs over tabs 2) "// good" goes against violation of [18.3](https://github.com/airbnb/javascript#18.3) that says "*Place no space before the argument list in function calls and declarations.*" --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ea0c66bd7f..3e9e75110e 100644 --- a/README.md +++ b/README.md @@ -1457,17 +1457,17 @@ Other Style Guides ```javascript // bad - function () { + function() { ∙∙∙∙const name; } // bad - function () { + function() { ∙const name; } // good - function () { + function() { ∙∙const name; } ```