From cf7c8bb70da9b4608db082fe66e92867945671d2 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Mon, 17 Oct 2022 23:32:28 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Updated=20pre=20commit=20configs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2088af9..8d91657 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [flake8] max-line-length = 120 -exclude = .tox,.git,*/settings/*,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv +exclude = .tox,.git,*/settings/*,*/static/CACHE/*,docs,node_modules,venv extend-ignore = E203 [pycodestyle] max-line-length = 120 -exclude = .tox,.git,*/settings/*,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv +exclude = .tox,.git,*/settings/*,*/static/CACHE/*,docs,venv [isort] line_length = 88 @@ -13,22 +13,11 @@ known_first_party = config multi_line_output = 3 default_section = THIRDPARTY skip = venv/ -skip_glob = **/migrations/*.py include_trailing_comma = true force_grid_wrap = 0 use_parentheses = true profile = black -[pycln] -exclude = __init__.py, -all = true - -[coverage:run] -source = apps -omit = *migrations*,*test*,*__init__*,dummy_data.py - -[coverage:report] -show_missing = True [mypy] python_version = 3.10