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 E283EA0C43; Wed, 20 Oct 2021 15:51:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CFBEA4118F; Wed, 20 Oct 2021 15:51:12 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id A4AF440142 for ; Wed, 20 Oct 2021 15:51:11 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10143"; a="227551341" X-IronPort-AV: E=Sophos;i="5.87,167,1631602800"; d="scan'208";a="227551341" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Oct 2021 06:48:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,167,1631602800"; d="scan'208";a="718958619" Received: from silpixa00399126.ir.intel.com ([10.237.223.151]) by fmsmga006.fm.intel.com with ESMTP; 20 Oct 2021 06:48:48 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Wed, 20 Oct 2021 14:48:40 +0100 Message-Id: <20211020134840.2421686-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [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" 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. 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 -- 2.30.2