mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-23 13:30:25 +08:00
27 lines
476 B
TOML
27 lines
476 B
TOML
[tool.black]
|
|
line-length = 99
|
|
target-version = ['py38']
|
|
exclude = '''
|
|
/(
|
|
\.eggs
|
|
| \.git
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| build
|
|
| dist
|
|
| venv
|
|
)/
|
|
'''
|
|
|
|
[tool.isort]
|
|
profile = 'black'
|
|
src_paths = ['optuna', 'tests', 'docs', 'benchmarks']
|
|
skip_glob = ['docs/source/conf.py', '**/alembic/versions/*.py', 'tutorial/**/*.py']
|
|
line_length = 99
|
|
lines_after_imports = 2
|
|
force_single_line = 'True'
|
|
force_sort_within_sections = 'True'
|
|
order_by_type = 'False'
|