-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
18 lines (15 loc) · 939 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[build-system]
requires = ["setuptools", "wheel", "cython", "pylint", "psutil"]
build-backend = "setuptools.build_meta"
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 140
# Many false positives and wrong assumptoins with pylint unfortuantely and
# also really wrong things like "unidiomatic-typecheck" or "import-outside-toplevel"
disable = ["missing-module-docstring", "missing-class-docstring", "missing-function-docstring",
"unidiomatic-typecheck", "multiple-imports", "fixme", "no-else-return", "unused-argument",
"invalid-name", "import-outside-toplevel", "no-self-use", "method-hidden", "line-too-long",
"raise-missing-from", "redefined-builtin", "logging-too-many-args", "logging-fstring-interpolation",
"deprecated-method", "inconsistent-return-statements", "too-many-instance-attributes"]
[tool.pylint.'DESIGN']
max-attributes = 22
good-names-rgxs = "^[_a-z][_a-z0-9]?$"