Function: projectile-get-repo-ignored-files

projectile-get-repo-ignored-files is a byte-compiled function defined in projectile.el.

Signature

(projectile-get-repo-ignored-files PROJECT VCS)

Documentation

Get a list of the files ignored in the PROJECT using VCS.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-get-repo-ignored-files (project vcs)
  "Get a list of the files ignored in the PROJECT using VCS."
  (let ((cmd (projectile-get-ext-ignored-command vcs)))
    (when cmd
      (projectile-files-via-ext-command project cmd))))