-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 763 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 763 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
29
30
31
32
33
34
35
36
# Formatter: black
[tool.black]
line-length = 119
# Formatter: isort
[tool.isort]
profile = "black"
line_length = 119
# Type checker: mypy
[tool.mypy]
python_version = "3.9"
# Config file
warn_unused_configs = true
# Target files
files = "rectangle_packing_solver/*.py"
# Import discovery
ignore_missing_imports = true
follow_imports = "silent"
# Untyped definitions and calls
disallow_untyped_calls = true
disallow_untyped_defs = true
show_error_codes = true
# Configuring warnings
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
# warn_unreachable = true # Will be enabled in the future.
# Dependencies that don't have types.
[[tool.mypy.overrides]]
module = [
"simanneal",
"matplotlib"
]
ignore_missing_imports = true