summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 23:21:00 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 23:21:00 -0500
commit43be550b235f88007c4c1792a7caff38c5ba271f (patch)
treea306d7c82d72a42f929a0f25e4e914a63f43452a
parent076c9ebea10fba2a978d19057caccab9e8862ab4 (diff)
downloadcmd2-git-43be550b235f88007c4c1792a7caff38c5ba271f.tar.gz
Exclude various directories from isort
-rw-r--r--pyproject.toml1
-rw-r--r--setup.cfg2
2 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 3d45694e..2dc65758 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,5 +21,6 @@ exclude = '''
| cmd2.egg-info
| cmd2_history.dat
| dist
+ | htmlcov
)/
'''
diff --git a/setup.cfg b/setup.cfg
index 1f7268b6..ebd65410 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -26,7 +26,7 @@ exclude =
[isort]
line_length = 127
-skip = cmd2/__init__.py
+skip = cmd2/__init__.py,.git,__pycache,.tox,.nox,.venv,.eggs,.idea,.vscode,build,dist.htmlcov
profile = black
multi_line_output = 3
include_trailing_comma = true