From b6d5bd21fd2fae47d127153a1da511841b0bf1f6 Mon Sep 17 00:00:00 2001 From: ARYAN-NIKNEZHAD Date: Tue, 20 Aug 2024 16:09:12 +0430 Subject: [PATCH] :wrench: chore: Move flake8 config pyproject.toml Closes(#38) --- .flake8 | 4 ---- pyproject.toml | 5 +++++ 2 files changed, 5 insertions(+), 4 deletions(-) delete mode 100644 .flake8 diff --git a/.flake8 b/.flake8 deleted file mode 100644 index 848f4fb..0000000 --- a/.flake8 +++ /dev/null @@ -1,4 +0,0 @@ -[flake8] -max-line-length = 88 -extend-ignore = E203, W503 -exclude = docs diff --git a/pyproject.toml b/pyproject.toml index 700f32d..8fdfda7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,6 +81,11 @@ exclude = ''' name = "cz_conventional_commits" version = "0.1.0" +[tool.flake8] +max-line-length = 88 +extend-ignore = ["E203", "W503"] +exclude = ["docs"] + [tool.pytest.ini_options] addopts = "--strict-markers" testpaths = ["tests"]