From a9eec58e35cd50c9dc496ce23822c8cdd98682a1 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Mon, 6 Mar 2017 14:17:52 -0500 Subject: [PATCH] Add .editorconfig Change-Id: I75e7e1baaf03a05e2bf97fe2cbc8735d6a280dd2 Signed-off-by: Thanh Ha --- .editorconfig | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..d53519aa --- /dev/null +++ b/.editorconfig @@ -0,0 +1,29 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space + +[*.json] +indent_size = 2 + +[*.rst] +indent_size = 4 + +[*.markdown] +indent_size = 4 +max_line_length = 80 + +[*.py] +indent_size = 4 +max_line_legth = 120 + +[*.sh] +indent_size = 4 +max_line_length = 80 + +[*.yaml] +indent_size = 4 + -- 2.16.6