From f6ef9ca572e7b7f42cb94b06904b298665297738 Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Tue, 11 Dec 2018 13:32:51 -0500 Subject: [PATCH] Fix indentation rules in .editorconfig (#916) * Specify correct indentation level in .editorconfig * Add exception to indent package.json with 2 spaces since NPM effectively mandates it --- .editorconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 2a1417f5a..220e0298e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,7 +5,10 @@ root = true [*] charset = utf-8 indent_style = space -indent_size = 2 +indent_size = 4 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true + +[package.json] +indent_size = 2