Skip to content

Commit

Permalink
Apply auto formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Sep 16, 2023
1 parent aefce6c commit b22cf0b
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]

[tool.black]
line-length = 100
exclude = '''
/(
\.eggs
Expand All @@ -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]
Expand All @@ -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

0 comments on commit b22cf0b

Please sign in to comment.