Variable: projectile-globally-ignored-files
projectile-globally-ignored-files is a customizable variable defined
in projectile.el.
Value
("TAGS" ".projectile-cache.eld")
Documentation
A list of files globally ignored by projectile.
Note that files aren't filtered if projectile-indexing-method
is set to alien.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defcustom projectile-globally-ignored-files
(list projectile-tags-file-name projectile-cache-file)
"A list of files globally ignored by projectile.
Note that files aren't filtered if `projectile-indexing-method'
is set to `alien'."
:safe (lambda (x) (not (remq t (mapcar #'stringp x))))
:group 'projectile
:type '(repeat string))