From 1b7a43877bfa4a01f2f49e9ef46cad9a8649d801 Mon Sep 17 00:00:00 2001 From: Spenser Black Date: Tue, 15 Feb 2022 14:35:56 -0500 Subject: [PATCH] Disabled line length limit in `share/` Many of the lines in `share/functions` and `share/completions` violate the max line length, and it can be annoying to try to maintain consistency while fighting against the editor trying to wrap lines. --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 5aad22212..a5c417ee6 100644 --- a/.editorconfig +++ b/.editorconfig @@ -21,5 +21,8 @@ indent_size = 2 [Dockerfile] indent_size = 2 +[share/{completions,functions}/**.fish] +max_line_length = none + [COMMIT_EDITMSG] max_line_length = 80