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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,6 @@ disable=
83
83
too-many-arguments,
84
84
invalid-name,
85
85
too-many-instance-attributes,
86
-
line-too-long, # We let Flake8 take care of this # TODO: Fix these and stop relying on flake8
87
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
88
87
import-error, # Since we run Pylint before any of our builds in tox, this will always fail
89
88
protected-access, # TODO: Fix access
@@ -228,8 +227,9 @@ max-nested-blocks=5
228
227
# Maximum number of characters on a single line.
229
228
max-line-length=100
230
229
231
-
# Regexp for a line that is allowed to be longer than the limit.
232
-
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
230
+
# Regexp for a line that is allowed to be longer than the limit. Can only be a single regex.
231
+
# The following matches any semblance of a url of any sort.
0 commit comments