diff options
| author | Yuval Adam <_@yuv.al> | 2023-10-12 12:35:19 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2023-10-12 12:35:19 +0200 |
| commit | 86f3551e48a4c01b7ca3218f6145b5a55a969cdd (patch) | |
| tree | 7ae05826fa38981187fcc017d2ef4e5185e37fca /.pylintrc | |
| parent | cd7d0d7ba3c6ba53e66c6169f1cac8e55ef39d1b (diff) | |
Diffstat (limited to '.pylintrc')
| -rw-r--r-- | .pylintrc | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -70,11 +70,7 @@ disable=print-statement, unpacking-in-except, old-raise-syntax, backtick, - long-suffix, - old-ne-operator, - old-octal-literal, import-star-module-level, - non-ascii-bytes-literal, raw-checker-failed, bad-inline-option, locally-disabled, @@ -122,7 +118,6 @@ disable=print-statement, range-builtin-not-iterating, filter-builtin-not-iterating, using-cmp-argument, - eq-without-hash, div-method, idiv-method, rdiv-method, @@ -143,7 +138,8 @@ disable=print-statement, xreadlines-attribute, deprecated-sys-function, exception-escape, - comprehension-escape + comprehension-escape, + broad-exception-raised # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option @@ -607,5 +603,5 @@ preferred-modules= # Exceptions that will emit a warning when being caught. Defaults to # "BaseException, Exception". -overgeneral-exceptions=BaseException, - Exception +overgeneral-exceptions=builtins.BaseException, + builtins.Exception |
