From b22cf0bc2161a431aef64bda8f8bf7ba5374a403 Mon Sep 17 00:00:00 2001 From: Tsuyoshi Hombashi Date: Sat, 16 Sep 2023 21:23:09 +0900 Subject: [PATCH] Apply auto formatter --- pyproject.toml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 65202cf..50cf1af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,6 @@ build-backend = "setuptools.build_meta" requires = ["setuptools>=61.0"] [tool.black] -line-length = 100 exclude = ''' /( \.eggs @@ -19,38 +18,39 @@ exclude = ''' )/ | docs/conf.py ''' +line-length = 100 target-version = ['py37', 'py38', 'py39', 'py310', 'py311'] [tool.coverage.run] -source = ['tcolorpy'] branch = true +source = ['tcolorpy'] [tool.coverage.report] -show_missing = true -precision = 1 exclude_lines = [ - 'except ImportError', - 'raise NotImplementedError', - 'pass', - 'ABCmeta', - 'abstractmethod', - 'abstractproperty', - 'abstractclassmethod', - 'warnings.warn', + 'except ImportError', + 'raise NotImplementedError', + 'pass', + 'ABCmeta', + 'abstractmethod', + 'abstractproperty', + 'abstractclassmethod', + 'warnings.warn', ] +precision = 1 +show_missing = true [tool.isort] +include_trailing_comma = true known_third_party = [ - 'pytest', + 'pytest', ] -include_trailing_comma = true line_length = 100 lines_after_imports = 2 multi_line_output = 3 skip_glob = [ - '*/.eggs/*', - '*/.pytype/*', - '*/.tox/*', + '*/.eggs/*', + '*/.pytype/*', + '*/.tox/*', ] [tool.mypy] @@ -65,9 +65,9 @@ warn_unused_configs = true [tool.pytest.ini_options] testpaths = [ - "test", + "test", ] md_report = true -md_report_verbose = 0 md_report_color = "auto" +md_report_verbose = 0