From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ACE3315814E for ; Fri, 6 Oct 2023 12:34:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB78C2BC049; Fri, 6 Oct 2023 12:34:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CC3F82BC049 for ; Fri, 6 Oct 2023 12:34:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7A08335D12 for ; Fri, 6 Oct 2023 12:34:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 917C79CF for ; Fri, 6 Oct 2023 12:34:15 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1696552058.c7e5540703846d21e82b67e0e08ed5c1bb2e14a6.sping@gentoo> Subject: [gentoo-commits] proj/elogv:master commit in: / X-VCS-Repository: proj/elogv X-VCS-Files: pyproject.toml X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: c7e5540703846d21e82b67e0e08ed5c1bb2e14a6 X-VCS-Branch: master Date: Fri, 6 Oct 2023 12:34:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8913cc01-8533-46a3-b521-e2aafcd42853 X-Archives-Hash: da8e3c34faef168c6581a18f292c4881 commit: c7e5540703846d21e82b67e0e08ed5c1bb2e14a6 Author: Alfred Wingate protonmail com> AuthorDate: Fri Oct 6 00:25:53 2023 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Fri Oct 6 00:27:38 2023 +0000 URL: https://gitweb.gentoo.org/proj/elogv.git/commit/?id=c7e55407 pyproject.toml: Add ruff configuration Signed-off-by: Alfred Wingate protonmail.com> pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 755d294..25bc44c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,3 +22,8 @@ extend_exclude = "(man|po|.*.egg-info)" [tool.isort] profile = "black" src_paths = ["elogv"] + +[tool.ruff] +include = ["elogv", "setup.py"] +# Ignore long line violations +ignore = ["E501"]