-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (42 loc) · 1.05 KB
/
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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.pylint.'MESSAGE CONTROL']
enable = [
"use-symbolic-message-instead",
]
disable = [
"attribute-defined-outside-init",
"duplicate-code",
"invalid-name",
"protected-access",
"too-few-public-methods",
"too-many-branches",
"too-many-locals",
"too-many-statements",
"too-many-nested-blocks",
"too-many-return-statements",
"too-many-instance-attributes",
"too-many-arguments",
"consider-using-assignment-expr",
"consider-using-f-string",
# handled by black
"format",
"missing-module-docstring",
"fixme",
# Needed for backwards compatibility
"deprecated-typing-alias",
"consider-alternative-union-syntax",
]
[tool.pylint.MASTER]
load-plugins = [
"pylint.extensions.check_elif",
"pylint.extensions.bad_builtin",
"pylint.extensions.code_style",
"pylint.extensions.overlapping_exceptions",
"pylint.extensions.typing",
"pylint.extensions.redefined_variable_type",
]