Function: projectile-ignored-files
projectile-ignored-files is a byte-compiled function defined in
projectile.el.
Signature
(projectile-ignored-files)
Documentation
Return list of ignored files.
That's a combination of the globally ignored files and files ignored in a project's dirconfig.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-ignored-files ()
"Return list of ignored files.
That's a combination of the globally ignored files and
files ignored in a project's dirconfig."
(seq-difference
(mapcar
#'projectile-expand-root
(append
projectile-globally-ignored-files
(projectile-project-ignored-files)))
(projectile-unignored-files)))