forked from sicara/easy-few-shot-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (36 loc) · 799 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
## black
[tool.black]
target-version = ['py311']
## pylint
[tool.pylint.messages_control]
disable = [
"no-member",
"missing-module-docstring",
"missing-class-docstring",
"too-few-public-methods",
# already managed by isort:
"ungrouped-imports",
"wrong-import-order",
"wrong-import-position",
]
[tool.pylint.miscellaneous]
notes = ["FIXME"]
[tool.pylint.similarities]
ignore-signatures = "yes"
ignore-imports = "yes"
min-similarity-lines = 8
[tool.pylint.basic]
no-docstring-rgx = "^_|^test_|^Test[A-Z]" # no docstrings for tests
max-line-length = 120
docstring-min-length = 15
max-args=10
max-attributes=10
## isort
[tool.isort]
profile = "black"
multi_line_output = 3
py_version=311
## mypy
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true