From 0189b96b92133ea0aa858a94f0fe0e112995e965 Mon Sep 17 00:00:00 2001 From: Kevin Barabash Date: Thu, 25 Sep 2014 14:32:37 -0600 Subject: [PATCH] added rule to the style guide section for where to declare variables --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e8becb8..6ff7034 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -100,6 +100,7 @@ Code - 4 spaces for indentation - 80 character line length - commas last + - declare variables in the outermost scope that they are used In general, try to make your code blend in with the surrounding code.