Skip to content

Commit 19eb121

Browse files
updated pylintrc
1 parent 32d796e commit 19eb121

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.pylintrc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,8 @@ min-public-methods=2
312312
[EXCEPTIONS]
313313

314314
# Exceptions that will emit a warning when caught.
315-
overgeneral-exceptions=BaseException,
316-
Exception
315+
overgeneral-exceptions=builtin.BaseException,
316+
builtin.Exception
317317

318318

319319
[FORMAT]
@@ -423,7 +423,10 @@ disable=raw-checker-failed,
423423
use-symbolic-message-instead,
424424
anomalous-backslash-in-string,
425425
multiple-statements,
426-
line-too-long
426+
line-too-long,
427+
import-error,
428+
consider-using-with
429+
427430

428431
# Enable the message, report, category or checker with the given id(s). You can
429432
# either give multiple identifier separated by comma (,) or put this option

0 commit comments

Comments
 (0)