-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (44 loc) · 942 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
47
48
49
[tool.pylint.format]
max-line-length = 120
[tool.pylint.tool-check]
generated-members = 'self.exit_codes.*'
[tool.pylint.messages_control]
disable = [
'bad-continuation',
'duplicate-code',
'locally-disabled',
'logging-format-interpolation',
'inconsistent-return-statements',
'import-outside-toplevel',
'no-else-raise',
'too-many-arguments',
'too-many-ancestors',
'too-many-branches',
'too-many-locals',
]
[tool.pylint.basic]
good-names = [
'i',
'j',
'k',
'SsspFamily',
'StructureData',
'UpfData',
'sc',
'cs',
'db',
'ce'
]
[tool.pytest.ini_options]
minversion = '6.0'
testpaths = [
'tests',
]
filterwarnings = [
'ignore::DeprecationWarning:frozendict:',
'ignore::DeprecationWarning:pkg_resources:',
'ignore::DeprecationWarning:reentry:',
'ignore::DeprecationWarning:sqlalchemy_utils:',
]
[tool.pylint.miscellaneous]
notes = ['FIXME']