From f187a308bc5712cf68102c304835c640d36a524f Mon Sep 17 00:00:00 2001 From: empyrical Date: Mon, 8 Oct 2018 23:15:35 -0700 Subject: [PATCH] editorconfig: Set indent_size for BUCK files to 4 (#21554) Summary: The `BUCK` build files' indentation are 4 spaces large. This PR adds a small modification to `.editorconfig` to reflect that. Especially important for them, because an improperly indented line would be a syntax error. Pull Request resolved: https://github.com/facebook/react-native/pull/21554 Differential Revision: D10247954 Pulled By: TheSavior fbshipit-source-id: 98596a563e9f8c36060cd8aa702757eff230c4c3 --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 4cde30709..dadac3a2b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,3 +12,6 @@ indent_size = 2 [*.gradle] indent_size = 4 + +[BUCK] +indent_size = 4