forked from visemet/gdb-mongodb-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (50 loc) · 1.05 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
55
56
57
58
59
[build-system]
requires = [
"setuptools >= 45.1.0",
"setuptools_scm[toml] >= 6.3.2",
"wheel >= 0.36.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "gdbmongo/_version.py"
[tool.mypy]
mypy_path = "stubs"
pretty = true
python_version = "3.9"
strict = true
warn_unreachable = true
[tool.pydocstyle]
match = ".*\\.pyi?"
ignore = [
"D101",
"D102",
"D103",
"D105",
"D106",
"D107",
"D203",
"D205",
"D213",
"D400",
"D415"
]
[tool.pylint]
[tool.pylint.basic]
ignore = "_version.py"
[tool.pylint.design]
ignored-parents = [
"gdbmongo.printer_protocol.PrettyPrinterProtocol",
"gdbmongo.printer_protocol.SupportsDisplayHint",
"gdbmongo.printer_protocol.SupportsToString",
"gdbmongo.printer_protocol.SupportsChildren"
]
[tool.pylint.similarities]
min-similarity-lines = 6
[tool.pylint.typecheck]
ignored-modules = [
"gdb"
]
[tool.yapf]
based_on_style = "pep8"
column_limit = 100
split_before_named_assigns = false