From 4cdfea39773ff6924b45ac219a79bd069f84b29c Mon Sep 17 00:00:00 2001 From: MinWoo Sung Date: Mon, 28 Aug 2023 19:09:15 +0900 Subject: [PATCH] add compatibility options for black and flake8 (#4541) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * add compatibility options for black and flake8 * remove flake8 args option --------- Co-authored-by: 성민우 --- .flake8 | 1 + {{cookiecutter.project_slug}}/setup.cfg | 1 + 2 files changed, 2 insertions(+) diff --git a/.flake8 b/.flake8 index 84b4b441..3a87b269 100644 --- a/.flake8 +++ b/.flake8 @@ -1,3 +1,4 @@ [flake8] exclude = docs max-line-length = 119 +extend-ignore = E203 diff --git a/{{cookiecutter.project_slug}}/setup.cfg b/{{cookiecutter.project_slug}}/setup.cfg index 82906421..2412f174 100644 --- a/{{cookiecutter.project_slug}}/setup.cfg +++ b/{{cookiecutter.project_slug}}/setup.cfg @@ -4,6 +4,7 @@ [flake8] max-line-length = 119 exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv +extend-ignore = E203 [pycodestyle] max-line-length = 119