We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ebbce commit 796e3c0Copy full SHA for 796e3c0
.pylintrc
@@ -71,6 +71,15 @@ disable=raw-checker-failed,
71
metaclass-assignment,
72
missing-docstring, # No doc-string
73
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
83
84
85
# Enable the message, report, category or checker with the given id(s). You can
@@ -356,7 +365,8 @@ good-names=i,
356
365
id,
357
366
db,
358
367
f,
359
- dt
368
+ dt,
369
+ c
360
370
361
371
# Include a hint for the correct naming format with invalid-name.
362
372
include-naming-hint=yes
0 commit comments