Variable: projectile-globally-unignored-files
projectile-globally-unignored-files is a customizable variable defined
in projectile.el.
Value
nil
Documentation
A list of files globally unignored by projectile.
Entries cancel out the matching projectile-globally-ignored-files
entries.
This variable was added, or its default value changed, in projectile version 0.14.0.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-globally-unignored-files nil
"A list of files globally unignored by projectile.
Entries cancel out the matching `projectile-globally-ignored-files'
entries."
:group 'projectile
:type '(repeat string)
:safe #'list-of-strings-p
:package-version '(projectile . "0.14.0"))