forked from optuna/optuna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
28 lines (26 loc) · 736 Bytes
/
Copy pathsetup.cfg
File metadata and controls
28 lines (26 loc) · 736 Bytes
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
27
28
# This section is for flake8.
[flake8]
ignore =
E203,
W503,
# Ignore H306 for `hacking` to be compatible with `isort`:
# https://docs.openstack.org/hacking/latest/user/hacking.html#imports
H306
max-line-length = 99
statistics = True
exclude = venv,build,tutorial,.asv
# 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
strict_concatenate = True
no_implicit_reexport = True
ignore_missing_imports = True
exclude = venv|build|docs|tutorial|optuna/storages/_rdb/alembic