forked from aiidateam/aiida-cp2k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 819 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
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
"too-many-ancestors",
"too-many-locals",
"duplicate-code",
"import-outside-toplevel",
]
module-naming-style="any"
[tool.pytest.ini_options]
python_files = "test_*.py example_*.py"
python_functions = "example_* test_*"
filterwarnings = [
"ignore::DeprecationWarning:aiida:",
"ignore::DeprecationWarning:plumpy:",
"ignore::DeprecationWarning:django:",
"ignore::DeprecationWarning:frozendict:",
"ignore::DeprecationWarning:sqlalchemy:",
"ignore::DeprecationWarning:yaml:",
"ignore::DeprecationWarning:pymatgen:",
]
[tool.pylint.basic]
good-names = [
"_",
"x",
"y",
"z",
"i",
"j",
"k",
"pk",
]
no-docstring-rgx = "^_,setUp,tearDown"
docstring-min-length = 5