From 6caf8819db2cf9ac563441852d51fec25d90df75 Mon Sep 17 00:00:00 2001 From: DustinMoriarty Date: Fri, 27 Nov 2020 22:51:21 -0600 Subject: [PATCH 1/2] Cleaned up black and isort config. --- pyproject.toml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bb88ded..c319622 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "config-injector" -version = "0.2.1" +version = "0.2.2" description = "Simple dependency injection framework for python for easy and logical app configuration." authors = ["DustinMoriarty "] readme = "README.md" @@ -35,26 +35,20 @@ include_trailing_comma = true lines_after_imports = 2 lines_between_types = 1 use_parentheses = true -src_paths = ["poetry", "tests"] -skip_glob = ["*/setup.py"] +src_paths = ["config_injector", "tests"] filter_files = true known_first_party = "poetry" [tool.black] line-length = 88 -include = '\.pyi?$' exclude = ''' /( \.eggs | \.git - | \.hg - | \.mypy_cache | \.tox | \.venv | _build - | buck-out | build | dist - | tests/.*/setup.py )/ ''' From 03da394eb015f3a30a8ad6451ef834f908a74b10 Mon Sep 17 00:00:00 2001 From: DustinMoriarty Date: Fri, 27 Nov 2020 22:52:01 -0600 Subject: [PATCH 2/2] Cleaned up black and isort config. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c319622..aa7395e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,6 @@ lines_between_types = 1 use_parentheses = true src_paths = ["config_injector", "tests"] filter_files = true -known_first_party = "poetry" [tool.black] line-length = 88