From 715f11dc4bb1de76c71fcde2c033490563b44284 Mon Sep 17 00:00:00 2001 From: Mike Medley Date: Tue, 26 Nov 2013 20:44:39 -0600 Subject: [PATCH] Expecting me to alphabetize my variable declarations is both ridiculous and unnecessarily tedious. I'm never going to do that and I don't expect anyone else to. --- STYLEGUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STYLEGUIDE.md b/STYLEGUIDE.md index 757a0455b..840fdd42a 100644 --- a/STYLEGUIDE.md +++ b/STYLEGUIDE.md @@ -29,7 +29,7 @@ Variable declarations without value should be initialized to `null` All variable statements should be the first statements within the function body. -Each variable declaration should be separate, on its own line, in alphabetical order, e.g., +Each variable declaration should be separate, on its own line, e.g., ```javascript var baz = 'meep'; var foo = true;