From 27e3921ba8fe48c4da73b456bb0a0d7a18c31fc8 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Fri, 28 Jul 2017 14:15:16 +0200 Subject: [PATCH] Add .editorconfig This file codifies the preferred editor configuration when working on V8. Including it in the repository makes it easier for contributors to follow the existing coding style. See http://editorconfig.org/ for more information. Change-Id: Iea69c29fc0d88e0fd085e4b3ffc46697d0cd1202 Reviewed-on: https://chromium-review.googlesource.com/591427 Reviewed-by: Tobias Tebbi Commit-Queue: Mathias Bynens Cr-Commit-Position: refs/heads/master@{#46973} --- .editorconfig | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..9d08a1a828 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true