From f8b283fbf093a8af40ceddc3e99058ffa1b45db6 Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 1 Feb 2024 12:17:17 +0000 Subject: [PATCH] Specify max line length in editor config to match flake8 settings --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index ab5bd0b..e2c1457 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,10 +1,10 @@ # http://editorconfig.org - root = true [*] indent_style = space indent_size = 4 +max_line_length = 120 trim_trailing_whitespace = true insert_final_newline = true charset = utf-8