Variable: projectile-warn-on-prefixless-dirconfig-lines

projectile-warn-on-prefixless-dirconfig-lines is a customizable variable defined in projectile.el.

Value

t

Documentation

Whether to warn about deprecated prefix-less ignore entries.

Lines in .projectile that start with no +/-/! prefix are still accepted as ignore patterns for backward compatibility, but the implicit form is being phased out. When this option is non-nil, a one-time warning is shown per project that uses any such line, listing the offending entries.

This variable was added, or its default value changed, in projectile version 3.0.0.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-warn-on-prefixless-dirconfig-lines t
  "Whether to warn about deprecated prefix-less ignore entries.
Lines in `.projectile' that start with no `+'/`-'/`!' prefix are
still accepted as ignore patterns for backward compatibility, but
the implicit form is being phased out.  When this option is
non-nil, a one-time warning is shown per project that uses any
such line, listing the offending entries."
  :group 'projectile
  :type 'boolean
  :package-version '(projectile . "3.0.0"))