Skip to content

Commit 7ce41ad

Browse files
committed
Removed unnecessary Pylint flags
- Removed `locally-disabled`: The flag `locally-disabled` is disabled by default, and can only be enabled by adding it to the `enable` section. But the flag was listed in the `disable` section, which is useless and only bloats up the Pylint configuration file. - Other flags were removed because there are no issues with the code with respect to those flags.
1 parent 9c19d72 commit 7ce41ad

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

pylint3.cfg

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,17 @@
11
[MASTER]
22
persistent=no
33
disable=
4-
bad-indentation,
54
missing-docstring,
65
fixme,
7-
locally-disabled,
86
similarities,
9-
too-many-ancestors,
107
too-many-instance-attributes,
118
too-few-public-methods,
12-
too-many-public-methods,
13-
too-many-return-statements,
149
too-many-branches,
1510
too-many-arguments,
1611
too-many-locals,
1712
too-many-statements,
18-
too-many-boolean-expressions,
1913
too-many-nested-blocks,
20-
too-many-lines,
21-
len-as-condition,
2214
no-else-return,
23-
inconsistent-return-statements,
24-
wildcard-import,
25-
unused-wildcard-import,
2615
no-else-raise,
2716
no-else-break,
2817
no-else-continue,

0 commit comments

Comments
 (0)