1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# This section is for flake8.
[flake8]
ignore =
E203,
E704,
W503
max-line-length = 99
statistics = True
exclude = .venv,venv,build,tutorial,.asv,docs/visualization_examples,docs/visualization_matplotlib_examples
# This section is for mypy.
[mypy]
# Options configure mypy's strict mode.
warn_unused_configs = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
no_implicit_optional = True
warn_redundant_casts = True
strict_equality = True
extra_checks = True
no_implicit_reexport = True
ignore_missing_imports = True
exclude = .venv|venv|build|docs|tutorial|optuna/storages/_rdb/alembic
|