From a994830bd874a93ed912b61110e1fac1106836bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Sun, 3 Feb 2019 02:44:50 -0500 Subject: [PATCH] Make sure the editorconfig indent size applies to all file formats I was glancing at the Vue PR, and was tired of scrolling horizontally on files with a lot of levels. I first discovered the `?ts=2` query string for GitHub, but then [read here](https://stackoverflow.com/a/33831598/1935861) that it will respect the `indent_size` for tabs, which is rather nifty. --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index ac4d682b..0e5f110b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,6 +6,7 @@ root = true [*] indent_style = tab +indent_size = 2 end_of_line = lf charset = utf-8 @@ -17,4 +18,3 @@ trim_trailing_whitespace = false [*.{json,yml}] indent_style = space -indent_size = 2