Variable: use-package-check-before-init

use-package-check-before-init is a customizable variable defined in use-package-core.el.gz.

Value

nil

Documentation

If non-nil, check that package exists before executing its :init block.

This check is performed by calling locate-library.

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

Source Code

;; Defined in /usr/src/emacs/lisp/use-package/use-package-core.el.gz
(defcustom use-package-check-before-init nil
  "If non-nil, check that package exists before executing its `:init' block.
This check is performed by calling `locate-library'."
  :type 'boolean
  :group 'use-package
  :version "29.1")