Variable: python-flymake-msg-alist

python-flymake-msg-alist is a customizable variable defined in python.el.gz.

Value

(("\\(^redefinition\\|.*unused.*\\|used$\\)" . :warning))

Documentation

Alist used to associate messages to their types.

Each element should be a cons-cell (REGEXP . TYPE), where TYPE should be a diagnostic type symbol like :error, :warning or
:note. For example, when using flake8 a possible
configuration could be:

  (("\\(^redefinition\\|.*unused.*\\|used$\\)" . :warning)
   ("^E999" . :error)
   ("^[EW][0-9]+" . :note))

By default messages are considered errors.

This variable was added, or its default value changed, in Emacs 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defcustom python-flymake-msg-alist
  '(("\\(^redefinition\\|.*unused.*\\|used$\\)" . :warning))
  "Alist used to associate messages to their types.
Each element should be a cons-cell (REGEXP . TYPE), where TYPE
should be a diagnostic type symbol like `:error', `:warning' or
`:note'.  For example, when using `flake8' a possible
configuration could be:

  ((\"\\(^redefinition\\|.*unused.*\\|used$\\)\" . :warning)
   (\"^E999\" . :error)
   (\"^[EW][0-9]+\" . :note))

By default messages are considered errors."
  :version "26.1"
  :group 'python-flymake
  :type '(alist :key-type (regexp)
                :value-type (symbol)))