Submitter | Sean Farley |
---|---|
Date | Aug. 31, 2016, 3:58 a.m. |
Message ID | <103df0c9da1af2394315.1472615887@laptop.local> |
Download | mbox | patch |
Permalink | /patch/16504/ |
State | Accepted |
Headers | show
Return-Path: <mercurial-devel-bounces@mercurial-scm.org> X-Original-To: patchwork@mercurial-scm.org Delivered-To: patchwork@mercurial-scm.org Received: from localhost (localhost [127.0.0.1]) by mercurial-scm.org (Postfix) with ESMTP id DDB412C17C; Tue, 30 Aug 2016 23:58:54 -0400 (EDT) X-Virus-Scanned: Debian amavisd-new at mercurial-scm.org Received: from mercurial-scm.org ([127.0.0.1]) by localhost (mercurial-scm.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id qI6Ldl2bWT25; Tue, 30 Aug 2016 23:58:54 -0400 (EDT) Received: from mercurial-scm.org (localhost [IPv6:::1]) by mercurial-scm.org (Postfix) with ESMTP id 939F52C191; Tue, 30 Aug 2016 23:58:53 -0400 (EDT) X-Original-To: mercurial-devel@mercurial-scm.org Delivered-To: mercurial-devel@mercurial-scm.org Received: from localhost (localhost [127.0.0.1]) by mercurial-scm.org (Postfix) with ESMTP id 0065D2C198 for <mercurial-devel@mercurial-scm.org>; Tue, 30 Aug 2016 23:58:52 -0400 (EDT) X-Virus-Scanned: Debian amavisd-new at mercurial-scm.org Received: from mercurial-scm.org ([127.0.0.1]) by localhost (mercurial-scm.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id OcKKlPVxcyTq for <mercurial-devel@mercurial-scm.org>; Tue, 30 Aug 2016 23:58:51 -0400 (EDT) Received: from farley.io (farley.io [162.243.156.76]) by mercurial-scm.org (Postfix) with ESMTPS id A67422C14F for <mercurial-devel@mercurial-scm.org>; Tue, 30 Aug 2016 23:58:51 -0400 (EDT) Received: from farley.io (unknown [192.77.237.155]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: sean@farley.io) by farley.io (Postfix) with ESMTPSA id 43A4D60172; Tue, 30 Aug 2016 20:58:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=farley.io; s=mail; t=1472615901; bh=po2L6OAimZUMGYUjVKvEdvBFD+KYJ7b4McZwmJIlK7c=; h=Subject:Date:From:To:Cc:From; b=0vwAEiEB0QsMWMFuf9RovhacaZJXMJdcIqdVt5N0MDpMmTw4VKS52yNFb5TMjBiBZ Ir9Zx116vuT2dwSP/zcAD8QuPU3jbOF2GTU6E46wvUdRlUjjwP3i1NzbWGdOMqUjdD BbDUIoICOwxZ4Mb+Ivsw39nb/QyCHnz9Tqw4PjGI= MIME-Version: 1.0 Subject: [PATCH 01 of 12 topics] flake8: add file for rules to ignore X-Mercurial-Node: 103df0c9da1af239431530cd44eec1826d411f0a X-Mercurial-Series-Index: 1 X-Mercurial-Series-Total: 12 Message-Id: <103df0c9da1af2394315.1472615887@laptop.local> X-Mercurial-Series-Id: <103df0c9da1af2394315.1472615887@laptop.local> User-Agent: Mercurial-patchbomb/3.9+3-73ff159923c1 Date: Tue, 30 Aug 2016 20:58:07 -0700 From: Sean Farley <sean@farley.io> To: mercurial-devel@mercurial-scm.org X-Virus-Scanned: clamav-milter 0.98.7 at farley.io X-Virus-Status: Clean Cc: sean@farley.io X-BeenThere: mercurial-devel@mercurial-scm.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <mercurial-devel.mercurial-scm.org> List-Unsubscribe: <https://www.mercurial-scm.org/mailman/options/mercurial-devel>, <mailto:mercurial-devel-request@mercurial-scm.org?subject=unsubscribe> List-Archive: <http://www.mercurial-scm.org/pipermail/mercurial-devel/> List-Post: <mailto:mercurial-devel@mercurial-scm.org> List-Help: <mailto:mercurial-devel-request@mercurial-scm.org?subject=help> List-Subscribe: <https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel>, <mailto:mercurial-devel-request@mercurial-scm.org?subject=subscribe> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 Errors-To: mercurial-devel-bounces@mercurial-scm.org Sender: "Mercurial-devel" <mercurial-devel-bounces@mercurial-scm.org> |
Comments
Sean Farley - Aug. 31, 2016, 3:58 a.m.
Patch
diff --git a/setup.cfg b/setup.cfg new file mode 100644 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[flake8] +ignore = E261, E266, E302, E129, E731, E124, E713, E301, E501, E111, E123, E222, W503, W391, E127