From da024708f601b65bef08a443a441559318ecb534 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Thu, 15 Feb 2024 15:41:41 -0700 Subject: [PATCH] add flake8 config to pyproject.toml --- pyproject.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1f58d674..535c5019 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,6 +99,10 @@ aggressive = 3 [tool.ruff] line-length = 70 +[tool.flake8] +line-length = 70 +ignore = "E501,W6" # or ["E501", "W6"] + [tool.black] line-length = 70 target-version = ['py38'] @@ -106,4 +110,6 @@ preview = true [tool.poetry.scripts] -swarms = 'swarms.cli._cli:main' \ No newline at end of file +swarms = 'swarms.cli._cli:main' + +