pylint: add PyQt5 support

pull/24725/head
Adeeb Shihadeh 3 years ago
parent a029245a78
commit 1c238e8c77
  1. 9
      .pylintrc

@ -3,7 +3,7 @@
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code
extension-pkg-whitelist=scipy cereal.messaging.messaging_pyx
extension-pkg-whitelist=scipy,cereal.messaging.messaging_pyx,PyQt5
# Add files or directories to the blacklist. They should be base names, not
# paths.
@ -250,13 +250,6 @@ max-line-length=100
# Maximum number of lines in a module
max-module-lines=1000
# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=trailing-comma,
dict-separator
# Allow the body of a class to be on the same line as the declaration if body
# contains single statement.
single-line-class-stmt=no

Loading…
Cancel
Save