Function: projectile-get-repo-ignored-directory
projectile-get-repo-ignored-directory is a byte-compiled function
defined in projectile.el.
Signature
(projectile-get-repo-ignored-directory PROJECT DIR VCS)
Documentation
Get a list of the files ignored in the PROJECT in the directory DIR.
VCS is the VCS of the project.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-get-repo-ignored-directory (project dir vcs)
"Get a list of the files ignored in the PROJECT in the directory DIR.
VCS is the VCS of the project."
(let ((cmd (projectile-get-ext-ignored-command vcs)))
(when cmd
(projectile-files-via-ext-command project (concat cmd " " dir)))))