From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C2196158083 for ; Thu, 19 Sep 2024 07:24:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2C93E29A5; Thu, 19 Sep 2024 07:24:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8CCB9E299F for ; Thu, 19 Sep 2024 07:24:26 +0000 (UTC) From: Sam James To: Paul Zander Cc: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] [PATCH 1/3] [QA] fix .editorconfig In-Reply-To: (Paul Zander's message of "Sun, 5 May 2024 16:45:29 +0200") Organization: Gentoo References: Date: Thu, 19 Sep 2024 08:24:22 +0100 Message-ID: <87tteccdi1.fsf@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Type: text/plain X-Archives-Salt: e8ab95ae-bd93-46fc-986a-2cf7ae634421 X-Archives-Hash: c281b2f2592ae69810bcee5d6dfb39e6 Paul Zander writes: > This series of patches is meant as a basis to fix the .editorconfig used in ::gentoo. Initial reason was that .patch > files are being broken by the current version. > > trimming trailing whitespace breaks patches > > Signed-off-by: Paul Zander > --- > .editorconfig | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/.editorconfig b/.editorconfig > index 7d6e17345e1..f2cd7328e57 100644 > --- a/.editorconfig > +++ b/.editorconfig > @@ -1,3 +1,6 @@ > +# Copyright 1999-2024 Gentoo Authors > +# Distributed under the terms of the GNU General Public License v2 > + > # https://editorconfig.org/ > root = true > > @@ -9,3 +12,6 @@ indent_style = tab > indent_size = 4 > trim_trailing_whitespace = true > #max_line_length = 80 > + > +[*.patch] > +trim_trailing_whitespace = false This first patch is OK and I'll pull it in. The others need to be respun with commit messages describing it.