Skip to content

Commit 796e3c0

Browse files
committed
Ignores too many/few clauses for Pylint
1 parent 89ebbce commit 796e3c0

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.pylintrc

+11-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,15 @@ disable=raw-checker-failed,
7171
metaclass-assignment,
7272
missing-docstring, # No doc-string
7373
no-name-in-module, # No name 'file' in module 'core'
74+
fixme,
75+
too-many-public-methods,
76+
too-many-locals,
77+
too-many-statements,
78+
too-many-branches,
79+
too-many-instance-attributes,
80+
too-many-arguments,
81+
too-few-public-methods,
82+
too-many-lines
7483

7584

7685
# Enable the message, report, category or checker with the given id(s). You can
@@ -356,7 +365,8 @@ good-names=i,
356365
id,
357366
db,
358367
f,
359-
dt
368+
dt,
369+
c
360370

361371
# Include a hint for the correct naming format with invalid-name.
362372
include-naming-hint=yes

0 commit comments

Comments
 (0)