From 25009411db9b68ce2c9ec9ffd3186ff39bad67dc Mon Sep 17 00:00:00 2001 From: Neil Girdhar Date: Mon, 18 Dec 2023 20:21:01 -0500 Subject: [PATCH] Set the maximum line length in .editorconfig (#11184) * 130 matches what the linter and formatter are told for Python files. * 79 appears to be the limit for README.md. --- .editorconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.editorconfig b/.editorconfig index 49b78217f..96dc1b77a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,7 +8,9 @@ end_of_line = lf indent_size = 2 [*.md] +max_line_length = 79 trim_trailing_whitespace = false [*.{py,pyi,toml,json}] +max_line_length = 130 indent_size = 4