forked from pynucastro/pynucastro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 816 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
# pyproject.toml
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
[tool.pylint."MESSAGES CONTROL"]
disable = [
"unspecified-encoding",
"line-too-long",
"wrong-import-order",
"too-many-branches",
"too-many-lines",
"too-many-statements",
"too-many-instance-attributes",
"too-many-arguments",
"too-many-locals",
"too-few-public-methods",
"invalid-name",
"consider-using-f-string",
"consider-using-with",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
]
enable = ["useless-suppression"]
[tool.pylint.FORMAT]
max-line-length = 132
[tool.pylint.TYPECHECK]
generated-members = ["viridis", "bwr"]
# see https://github.com/PyCQA/pylint/issues/2289 for the generated-members
[tool.codespell]
skip = ".git,*docs/build,*.bib"