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 15353A31F3 for ; Fri, 18 Oct 2019 17:47:58 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DDF761C1B9; Fri, 18 Oct 2019 17:47:57 +0200 (CEST) Received: from mail-pf1-f196.google.com (mail-pf1-f196.google.com [209.85.210.196]) by dpdk.org (Postfix) with ESMTP id 49CB31C13A for ; Fri, 18 Oct 2019 17:47:56 +0200 (CEST) Received: by mail-pf1-f196.google.com with SMTP id q12so4131889pff.9 for ; Fri, 18 Oct 2019 08:47:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=cg98CDPirq0UcMUGiKHxd2NGeA8csGiIACEWX1sftjY=; b=w6Y56OYtLrOIsVkPPbVIG7tBYmnf3tUMv650NqwCeGCvau/77UWdJndWWwUGzZJ+D6 iQKBLcLFQQykQ/b3mB9dgRhFt9LI/PMoEqXEKIryE5H7t/G4Oi89WhpyhcZDqabOSgQL 0uAhv1NJeJ6foWMS2MizAAmSl6GGG0mPpyY3eHWuzYdgbjMwlnnIlhzt0Cs6SxzQhyrH EUnhJxVOYGhqlyxsM0gOr+zAXAp6laAY3V7d/DZUyhKPdOSl+3JflrcCf8ak0+/dqt7e pxiR4Nf0d+IYbAs6Bxk0M7SCrUdviE/zfa7SMPAek8mycXv6Dct9sGshGifkWNR21Rw3 zQfg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=cg98CDPirq0UcMUGiKHxd2NGeA8csGiIACEWX1sftjY=; b=rNdAIKzrH49Y0QuTT0+8EMRicBQSOjOEl6FjC/WHfMszR9K0FQTDJAeH8c+nbonRY0 CKpfnuYLQ2/v+lovdYdc37sckpRUqlBiYKlo1oyM57a9NbvoqGRparhnaQLvjR8URm0W OPaE7hvdZ+OR9tW0qT3MFeRzJv6KSK2ZHT7PF0UjG5nlUxQqU7Aqk6XYKl+CbhxZ1y/Q 69qBs0sTlBJTlPEmV6c71Ms+lkK0OKR+kVBVVsDsTsY13wQleS9a05GtTdxzvBCJLWvr LKTlI2Ho/T5c9ZFQeusmza08caOIPZgv/gOnURRTxKHRxAG09QjhOM0qMjFDMIgxQmJm wvig== X-Gm-Message-State: APjAAAWIn7EChXvFjA2RKwqDmsKd8icJbEavQ7iKLwFDrZsinUImV9zR mdpiZv3798k7poQivPDteUNt9IIJu5GNBQ== X-Google-Smtp-Source: APXvYqxPc/lDONZ05aYpHkjAI27QHgcy+0xK9J5VP9nVklvczuMkcsi6WbfnFTDMGO0oM10k/TO4mA== X-Received: by 2002:a62:1dd2:: with SMTP id d201mr7611248pfd.105.1571413675378; Fri, 18 Oct 2019 08:47:55 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id i74sm10048813pfe.28.2019.10.18.08.47.55 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 18 Oct 2019 08:47:55 -0700 (PDT) Date: Fri, 18 Oct 2019 08:47:48 -0700 From: Stephen Hemminger To: Robin Jarry Cc: Thomas Monjalon , dev@dpdk.org Message-ID: <20191018084748.124f9f92@hermes.lan> In-Reply-To: <20191018075954.29715-1-robin.jarry@6wind.com> References: <20191018075954.29715-1-robin.jarry@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] tools: add EditorConfig file 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" On Fri, 18 Oct 2019 09:59:54 +0200 Robin Jarry wrote: Looks good, you should add a reference to https://editorconfig.org so others understand this > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright 2019 6WIND S.A. > + > +root = true > + > +[*] > +end_of_line = lf > +insert_final_newline = true > +charset = utf-8 > +indent_style = tab > +tab_width = 8 > +max_line_length = 80 > + > +[**.py] > +indent_style = space > +indent_size = 4 In the example on web site, they use [*.py] not [**.py]