forked from kaiko-ai/typedspark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 886 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
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.pylint]
ignore-paths = ['^tests/.+.py$', 'setup.py', '^docs/.+.py$']
[tool.pylint."messages control"]
disable = "all"
enable = [
"empty-docstring",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"unidiomatic-typecheck",
"no-else-return",
"consider-using-dict-comprehension",
"dangerous-default-value",
"unspecified-encoding",
"unnecessary-pass",
"redefined-outer-name",
"invalid-name",
"unused-argument",
"redefined-builtin",
"simplifiable-if-expression",
"logging-fstring-interpolation",
"inconsistent-return-statements",
"consider-using-set-comprehension"
]
[tool.coverage.run]
source = ["typedspark/"]
[tool.mypy]
exclude = ['^docs\/.+\.py$']
[tool.bandit]
exclude_dirs = ["tests"]