Function: projectile-ignored-directory-p
projectile-ignored-directory-p is a byte-compiled function defined in
projectile.el.
Signature
(projectile-ignored-directory-p DIRECTORY &optional ROOT)
Documentation
Check if DIRECTORY should be ignored.
DIRECTORY is an absolute directory name and ROOT is the project root it
belongs to, defaulting to the current project's. The answer is the one
indexing gives - see projectile--ignored-path-p.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-ignored-directory-p (directory &optional root)
"Check if DIRECTORY should be ignored.
DIRECTORY is an absolute directory name and ROOT is the project root it
belongs to, defaulting to the current project's. The answer is the one
indexing gives - see `projectile--ignored-path-p'."
(projectile--ignored-path-p directory root t))