From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 670B2A04DD; Thu, 28 Nov 2019 01:07:57 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E95282B88; Thu, 28 Nov 2019 01:07:55 +0100 (CET) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 6F5A128EE for ; Thu, 28 Nov 2019 01:07:54 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 10436226DC; Wed, 27 Nov 2019 19:07:53 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Wed, 27 Nov 2019 19:07:53 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=axMlhZWPPVxdTjqDNuuYUdcruYgt73zPO1XvR97bsuc=; b=LREB7W6gISCf V+STbfmJtNnJ69vxF5lWT9/UAzPDQNsfcmNb70B+V6t2ensuJxLTCV/x9rMoOkcu F4VpEFWgpkn3MqNsh67Y8QLheUAAAM3f4eFlqIkJ3HDrVnKx2aNeirYDfB1fPBEz dAAkWg/LVxP/LGbtJZDm1/MYZKW+qrY= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=axMlhZWPPVxdTjqDNuuYUdcruYgt73zPO1XvR97bs uc=; b=LMtnLQNRSs5GvcWnvp7Gi53D+PlL8iXQ31lSaGVzhS6iod3NjWrAD+mUY RcdiMY/HBxTBB2gBj29vqBqxDWRGeZkp17G8rIPQCAjC/yOrkX9/3hmsQb0BKoC6 QYRIqmdJKem53pbr2IJC/yA72v82Jda7V1wVfcAsPTO1YedWpJRD7BdW/+kQHVSO UqYjwrHBF9Z9+Nhop59CiylhpKT0b6yuHcWsQ9JY7Sdib6tgeVRT2QTP7ZdPPpce rLXmZU1Eee3dHbq1pwSX12ivQU4lpUdPGL+ISKq4H1e1kBBruAxc42LbUOWbHmAb BSD+DTQaMVIEZXN/zV1y2pTLIuF4g== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrudeiiedgudekucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecuff homhgrihhnpehgihhthhhusghushgvrhgtohhnthgvnhhtrdgtohhmnecukfhppeejjedr udefgedrvddtfedrudekgeenucfrrghrrghmpehmrghilhhfrhhomhepthhhohhmrghsse hmohhnjhgrlhhonhdrnhgvthenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 867BD306008B; Wed, 27 Nov 2019 19:07:51 -0500 (EST) From: Thomas Monjalon To: Kevin Traynor Cc: dev@dpdk.org, john.mcnamara@intel.com, marko.kovacevic@intel.com, david.marchand@redhat.com Date: Thu, 28 Nov 2019 01:07:50 +0100 Message-ID: <4315584.qesHagS4D0@xps> In-Reply-To: <20191120132713.28197-1-ktraynor@redhat.com> References: <20191120132713.28197-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] doc: add info about codespell config X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" 20/11/2019 14:27, Kevin Traynor: > Document the config to use codespell with checkpatches.sh. > > Signed-off-by: Kevin Traynor > --- > --- a/doc/guides/contributing/patches.rst > +++ b/doc/guides/contributing/patches.rst > -This, and any other configuration variables required by the development tools, are loaded from the following > -files, in order of preference:: > + > +Spell checking of commonly misspelled words can be enabled by downloading the codespell dictionary:: > + > + curl -o ~/dictionary.txt https://raw.githubusercontent.com/codespell-project/codespell/master/codespell_lib/data/dictionary.txt curl command is unneeded here > + > +The path to the downloaded ``dictionary.txt`` must be set in the environment variable ``DPDK_CHECKPATCH_CODESPELL``. > + > +Environment variables required by the development tools, are loaded from the following files, > +in order of preference:: Applied with minor changes, thanks