From 3e41dab2a58870a253f6974369c5b9de1e41d474 Mon Sep 17 00:00:00 2001 From: Jamie Snape Date: Wed, 3 Jun 2020 11:05:32 -0400 Subject: [PATCH] Fix .editorconfig for Markdown, Bazel, and Python (#13483) --- .editorconfig | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index f4ceddebf012..60d636c2e98e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,10 +6,17 @@ root = true # Unix-style newlines with a newline ending every file [*] -charset = utf +charset = utf-8 end_of_line = lf indent_size = 2 indent_style = space insert_final_newline = true trim_trailing_whitespace = true max_line_length = 80 + +[*.md] +trim_trailing_whitespace = false + +[*.{bazel,bzl,py}] +indent_size = 4 +max_line_length = 79