From 011487604e47fa664c67865f67ccba8c5626204d Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Wed, 25 Nov 2015 14:32:52 +0000 Subject: [PATCH] Add editorconfig file that documents JS conventions in this repo Existing JS files in this repo use Python-esque spacing and naming conventions (4 spaces, snake_cased) rather than JS conventions (2 spaces, camelCased). --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..20fd7a19 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,3 @@ +[*.js] +indent_style=space +indent_size=4