-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylintrc
37 lines (34 loc) · 951 Bytes
/
pylintrc
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
[MASTER]
extension-pkg-whitelist=pydantic
[MESSAGES CONTROL]
disable=unused-argument,
unused-import,
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
invalid-name,
no-member,
attribute-defined-outside-init,
too-many-arguments,
not-callable,
too-few-public-methods,
too-many-statements,
too-many-branches,
too-many-locals,
# too-many-attributes,
# no-self-use,
too-many-instance-attributes,
unnecessary-lambda-assignment,
consider-using-f-string,
abstract-method,
global-statement,
redefined-outer-name,
abstract-class-instantiated,
logging-fstring-interpolation,
assignment-from-none,
redefined-builtin,
too-many-return-statements
# [VARIABLES]
# allow-global-unused-variables=yes
[FORMAT]
max-line-length=140