forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (52 loc) · 959 Bytes
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.black]
line-length = 140
target-version = ["py37"]
[tool.coverage.report]
fail_under = 100
skip_empty = true
sort = "-cover"
omit = [
"*_tests/**",
"setup.py"
]
[tool.flake8]
extend-exclude = [
".venv",
"build",
"models",
".eggs",
".tox"
]
max-complexity = 10
max-line-length = 140
[tool.isort]
profile = "black"
color_output = false
skip_gitignore = true
[tool.mypy]
platform = "linux"
exclude = "build"
# Strictness
ignore_missing_imports = true
allow_redefinition = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_reexport = true
no_strict_optional = true
strict_equality = true
# Output
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
# Warnings
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = [
"integration_tests.*",
"unit_tests.*",
]
allow_incomplete_defs = true