From 64cb1173bce2c855d801940d6ff5462b14462e34 Mon Sep 17 00:00:00 2001 From: KDH Date: Tue, 17 Sep 2024 10:53:16 +0900 Subject: [PATCH] =?UTF-8?q?=EC=84=A4=EC=A0=95=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg => .flake8 | 7 ------- pyproject.toml | 9 +++++++++ 2 files changed, 9 insertions(+), 7 deletions(-) rename setup.cfg => .flake8 (50%) create mode 100644 pyproject.toml diff --git a/setup.cfg b/.flake8 similarity index 50% rename from setup.cfg rename to .flake8 index c12eedd..73e7d5c 100644 --- a/setup.cfg +++ b/.flake8 @@ -1,7 +1,3 @@ -[tool:pytest] -python_files = test* -norecursedirs = dev_matching delivery_hero - [flake8] exclude = venv max-line-length = 120 @@ -11,6 +7,3 @@ ignore = E701, E231, W503 - -[isort] -profile = black diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7c50048 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,9 @@ +[tool.isort] +profile = "black" + +[tool.black] +line_length = 120 + +[tool.pytest.ini_options] +python_files = ["test*"] +norecursedirs = ["dev_matching", "delivery_hero"]