From 0ecff6a4be98eb48f788342d10e185f9e86c39b9 Mon Sep 17 00:00:00 2001 From: Trey Hunner Date: Mon, 27 Feb 2012 17:37:39 -0800 Subject: [PATCH] Add EditorConfig file denoting indentation for JS --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..7dd83491e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +; This file is for unifying the coding style for different editors and IDEs. +; More information at http://EditorConfig.org + +root = true + +[grunt.js] +indent_style = tab + +[ui/**.js] +indent_style = tab + +[tests/unit/**.js] +indent_style = tab -- 2.39.5