You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .pylintrc
+10-9Lines changed: 10 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -76,21 +76,22 @@ confidence=
76
76
# --disable=W"
77
77
disable=
78
78
C0330, # Black disagrees with and explicitly violates this: https://github.com/python/black/issues/48
79
-
too-many-locals,
79
+
abstract-method, # TODO: Fix abstract methods
80
80
arguments-differ,
81
-
too-many-lines,
81
+
cyclic-import, # TODO: Resolve cyclic imports
82
82
fixme,
83
-
too-many-arguments,
84
83
invalid-name,
85
-
too-many-instance-attributes,
86
-
len-as-condition, # TODO: Enable this check once pylint 2.4.0 is released and consumed due to the fix in https://github.com/PyCQA/pylint/issues/2684
87
84
import-error, # Since we run Pylint before any of our builds in tox, this will always fail
88
-
protected-access, # TODO: Fix access
89
-
abstract-method, # TODO: Fix abstract methods
90
-
useless-object-inheritance, # TODO: Enable this check and fix code once Python 2 is no longer supported.
91
-
cyclic-import, # TODO: Resolve cyclic imports
85
+
import-outside-toplevel,
92
86
no-self-use, # TODO: Convert methods to functions where appropriate
87
+
protected-access, # TODO: Fix access
88
+
signature-differs, # TODO: fix kwargs
89
+
too-many-arguments,
93
90
too-many-branches, # TODO: Simplify or ignore as appropriate
91
+
too-many-instance-attributes,
92
+
too-many-lines,
93
+
too-many-locals,
94
+
useless-object-inheritance, # TODO: Enable this check and fix code once Python 2 is no longer supported.
94
95
95
96
[REPORTS]
96
97
# Set the output format. Available formats are text, parseable, colorized, msvs
0 commit comments