generated from cosmoquester/tf2-keras-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
33 lines (30 loc) · 858 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
[tool.black]
line-length = 120
include = '\.pyi?$'
[tool.isort]
multi_line_output = 3
line_length = 120
include_trailing_comma=true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-m \"not interferable\""
markers = ["interferable: marks tests capable of interfer other tests"]
[tool.pyright]
reportUnknownVariableType = false
reportUnknownMemberType = false
reportGeneralTypeIssues = false
reportUnusedImport = true
reportUnusedVariable = true
reportUnusedClass = true
reportUnusedFunction = true
reportImportCycles = true
reportTypeshedErrors = true
reportOptionalMemberAccess = true
reportUntypedBaseClass = true
reportPrivateUsage = true
reportConstantRedefinition = true
reportInvalidStringEscapeSequence = true
reportUnnecessaryIsInstance = true
reportUnnecessaryCast = true
reportAssertAlwaysTrue = true
reportSelfClsParameterName = true