mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
71676809d6
Summary: In most .gradle files, lines are indented with 4 spaces, but in some places they are indented with 2 spaces. This PR fixes them and enforce it by adding .editorconfig settings. Closes https://github.com/facebook/react-native/pull/10267 Differential Revision: D4048335 Pulled By: lacker fbshipit-source-id: df2f2556380f56672cf85690eb1c80e640a6aedf
15 lines
263 B
INI
15 lines
263 B
INI
# EditorConfig is awesome: http://EditorConfig.org
|
|
|
|
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# Unix-style newlines with a newline ending every file
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.gradle]
|
|
indent_size = 4
|