-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pylintrc
More file actions
37 lines (37 loc) · 864 Bytes
/
.pylintrc
File metadata and controls
37 lines (37 loc) · 864 Bytes
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
[pylint]
disable=
attribute-defined-outside-init,
broad-except,
consider-using-f-string,
consider-using-with,
global-statement,
global-variable-undefined,
import-error,
invalid-name,
line-too-long,
logging-fstring-interpolation,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
possibly-used-before-assignment,
protected-access,
redefined-outer-name,
simplifiable-if-statement,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-positional-arguments,
too-many-statements,
unspecified-encoding,
unused-argument,
used-before-assignment,
good-names=
template-python
ignore=
__init__.py,
notes=
FIXME,