add compatibility options for black and flake8 (#4541)

* add compatibility options for black and flake8

* remove flake8 args option

---------

Co-authored-by: 성민우 <minwoo@seongmin-uui-MacBookPro.local>
This commit is contained in:
MinWoo Sung 2023-08-28 19:09:15 +09:00 committed by GitHub
parent 3802572a88
commit 4cdfea3977
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
[flake8] [flake8]
exclude = docs exclude = docs
max-line-length = 119 max-line-length = 119
extend-ignore = E203

View File

@ -4,6 +4,7 @@
[flake8] [flake8]
max-line-length = 119 max-line-length = 119
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv
extend-ignore = E203
[pycodestyle] [pycodestyle]
max-line-length = 119 max-line-length = 119