From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0EA06A0C43; Wed, 20 Oct 2021 15:57:45 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 949D34118F; Wed, 20 Oct 2021 15:57:44 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id BB17840142 for ; Wed, 20 Oct 2021 15:57:42 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 27BD07F530; Wed, 20 Oct 2021 16:57:42 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 27BD07F530 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1634738262; bh=wtae4kdcB4i0S6rZEcZ9a3TtnzMdwM8idEw+Xz2N64c=; h=Subject:To:References:From:Date:In-Reply-To; b=Ja8h47PDv/WPavWqPRt2000o8Lob2Gz+JDrPGk/NiaezPNDOhdo3ODJPPvc+frz+T CB2i+4g8CUqNH7eLokgoaqoRfGp7Z1hFoDPs7+a1Az/qmK2gqq6yYXPPMNlf94CDTM t0riW8vWmJDb9k8PUUJCyshFCDBg0sKCECsx3O3E= To: Bruce Richardson , dev@dpdk.org References: <20211020134840.2421686-1-bruce.richardson@intel.com> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <59c1feb2-72c1-f1bd-a55f-dcec95751659@oktetlabs.ru> Date: Wed, 20 Oct 2021 16:57:41 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <20211020134840.2421686-1-bruce.richardson@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] editorconfig: bump line length to 100 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 10/20/21 4:48 PM, Bruce Richardson wrote: > Since we allow line lengths of up to 100, adjust the editorconfig to use > that value, to save editors (such as vim) from automatically wrapping > lines at 80 characters when typing. DPDK_CHECKPATCH_LINE_LENGTH default is 80 in devtools/checkpatches.sh > > Since python checkers all seem to expect 79 character lines max, add for > python only a 79-char max line length. > > Signed-off-by: Bruce Richardson > --- > .editorconfig | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/.editorconfig b/.editorconfig > index 5101630c8c..ab41c95085 100644 > --- a/.editorconfig > +++ b/.editorconfig > @@ -11,11 +11,12 @@ trim_trailing_whitespace = true > charset = utf-8 > indent_style = tab > tab_width = 8 > -max_line_length = 80 > +max_line_length = 100 > > [*.py] > indent_style = space > indent_size = 4 > +max_line_length = 79 > > [meson.build] > indent_style = space >