From 9e3f16175a57b9f62e7b55e6f1e8e0f4cfc1bfaa Mon Sep 17 00:00:00 2001 From: Fedor Lyanguzov Date: Sat, 28 Dec 2024 19:17:03 +0300 Subject: [PATCH] add support for pyproject.toml to flake8 --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3552b50..7f0a731 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,8 +21,12 @@ authors = [ test = ["pytest"] lint = [ "black", - "flake8" + "flake8", + "Flake8-pyproject" ] [project.scripts] example = "vpn_manager.__main__:main" + +[tool.flake8] +ignore = ["E501"]