Skip to content

Commit

Permalink
Apply auto formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Oct 7, 2023
1 parent 033b833 commit a25824d
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]

[tool.black]
line-length = 100
exclude = '''
.eggs/
| .git/
Expand All @@ -16,47 +15,48 @@ exclude = '''
| docs/conf.py
| setup.py
'''
line-length = 100

[tool.isort]
include_trailing_comma = true
known_third_party = [
'pytablewriter',
'pytest',
'pytablewriter',
'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.coverage.run]
source = ['tblfaker']
branch = true
source = ['tblfaker']

[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.pytest.ini_options]
testpaths = [
"test",
"test",
]

md_report = true
md_report_verbose = 0
md_report_color = "auto"
md_report_verbose = 0

discord_verbose = 1

0 comments on commit a25824d

Please sign in to comment.