-
Notifications
You must be signed in to change notification settings - Fork 74
/
pyproject.toml
54 lines (45 loc) · 1.21 KB
/
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
[tool.black]
line-length = 88
preview = true
[tool.isort]
profile = "black"
extend_skip = [".md", ".json", ".po", ".mo",".html", ".js", ".css", ".rst"]
skip_glob = ["env/*"]
known_local_folder = ["core"]
import_heading_stdlib="Global imports"
import_heading_localfolder="Local imports"
[tool.pycln]
include=".*\\.py$"
exclude="(.eggs|.git|.hg|.mypy_cache|__pycache__|.nox|.tox|.venv|.svn|buck-out|build|dist|env|)/"
# https://mypy.readthedocs.io/en/stable/config_file.html
[tool.mypy]
python_version = 3.8
ignore_missing_imports = true
check_untyped_defs = true
disallow_any_expr = false
disallow_untyped_calls = false
ignore_errors = false
show_error_codes = true
pretty = true
[tool.pylint.master]
output-format = "colorized"
extension-pkg-whitelist = [
"pydantic"
]
ignore="(.eggs|.git|.hg|.mypy_cache|__pycache__|.nox|.tox|.venv|.svn|buck-out|build|dist|env|)/"
[tool.pylint.format]
max-line-length = 88
[tool.pylint.messages_control]
disable = [
"wrong-import-order",
"method-hidden",
"too-many-lines",
"wildcard-import",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"logging-fstring-interpolation",
]
[tool.bandit]
# tests = ["B201", "B301"]
skips = []