-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
46 lines (38 loc) · 877 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
42
43
44
45
46
[build-system]
requires = [
'boilerplates[setup] ~= 1.0',
'GitPython ~= 3.1',
'packaging >= 23.0',
'semver ~= 2.13'
]
[tool.flake8]
max-line-length = 100
max-doc-length = 100
[[tool.mypy.overrides]]
module = [
'semver'
]
ignore_missing_imports = true
[tool.pydocstyle]
ignore = [
'D102', 'D103', 'D105', 'D107',
'D203', 'D213',
'D406', 'D407', 'D412', 'D413'
]
[tool.pylint.MASTER]
load-plugins = [
'pylint.extensions.broad_try_clause',
'pylint.extensions.mccabe',
'pylint.extensions.no_self_use',
'pylint.extensions.redefined_variable_type'
]
[tool.pylint.'MESSAGES CONTROL']
docstring-min-length = 5
[tool.pylint.SIMILARITIES]
ignore-imports = 'yes'
min-similarity-lines = 5
[tool.pylint.BASIC]
no-docstring-rgx = '^(test)?_|.*Tests$'
unsafe-load-any-extension = 'yes'
[tool.pylint.REPORTS]
output-format = 'colorized'