forked from ilsenatorov/rindti
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 895 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (39 loc) · 895 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
37
38
39
40
41
42
43
44
45
46
47
48
[tool.black]
line-length = 119
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
[tool.snakefmt]
line_length = 119
include = '\.smk$|^Snakefile'
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = true
ignore-semiprivate = true
ignore-private = true
ignore-module = true
fail-under = 80
exclude = ["^test/*"]
ignore-regex = ["^Base*", "^forward*", "^shared*", "^test*"]
verbose = 0
quiet = false
whitelist-regex = []
color = true
[tool.isort]
profile = "black"
line_length = 119
[tool.mypy]
ignore_missing_imports = true
follow_imports = "silent"
[tool.pytest.ini_options]
minversion = "6.0"
markers = [
"slow",
"gpu",
"snakemake",
]
[tool.pylint.'MESSAGES CONTROL']
disable = ["E1101", "E0611", "C0114", "R0901", "W0221", "R0913", "C0103", "W0201", "C0301", "D107", "D100"]
line-length = 119
[tool.pydocstyle]
ignore = ["D1"]