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 473CBA0C43; Wed, 20 Oct 2021 16:28:07 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 370C04118F; Wed, 20 Oct 2021 16:28:07 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 1E66640142 for ; Wed, 20 Oct 2021 16:28:06 +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 A29AA7F530; Wed, 20 Oct 2021 17:28:05 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru A29AA7F530 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1634740085; bh=4gcM9g92S8f/2mqRh3cRaA+NnFpmyoQNfJ5AXC1ETcE=; h=Subject:To:References:From:Date:In-Reply-To; b=pR0Km+vrggHesn79hM+EbDFtVZI7w/b2/ruPj8nSbA4MOQ3Rdd7uHbymlP1mEy/8V bgeYAUwYAnfzGdxo6CrX851Hz3uMDn/Yx9a9lQLoxU2DovJMkmpu5+lNHAN5o+TlYX W7zlmIdZZyo/9IUABTvr/B0rDkTvPyfUoNinTgpE= To: Bruce Richardson , dev@dpdk.org References: <20211020134840.2421686-1-bruce.richardson@intel.com> <20211020142601.157649-1-bruce.richardson@intel.com> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <7da17c30-18a2-4da5-60b3-c03d7a73eeb5@oktetlabs.ru> Date: Wed, 20 Oct 2021 17:28:05 +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: <20211020142601.157649-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 v2] devtools: clarify that lines up to 100 characters are ok 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 5:26 PM, Bruce Richardson wrote: > Since we allow line lengths of up to 100, and the CI checkpatches job > only check for that amount, the rest of our tooling and docs should > reflect this reality. Therefore we can: > > * adjust the editorconfig to use that value, to save editors (e.g. vim) > from automatically wrapping lines at 80 characters when typing. > [Since python checkers all seem to expect 79 character lines max, add > for python only a 79-char max line length.] > > * change the default line length setting in checkpatches script to 100 > so as it matches CI and pre-merge checks. > > * update the docs to clarify that while 80 chars is recommended, up to > 100 characters is acceptable. > > Signed-off-by: Bruce Richardson Acked-by: Andrew Rybchenko