Function: projectile-unignored-files

projectile-unignored-files is a byte-compiled function defined in projectile.el.

Signature

(projectile-unignored-files)

Documentation

Return list of unignored files.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-unignored-files ()
  "Return list of unignored files."
  (mapcar
   #'projectile-expand-root
   (append
    projectile-globally-unignored-files
    (projectile-project-unignored-files))))