Function: projectile-ignored-file-p

projectile-ignored-file-p is a byte-compiled function defined in projectile.el.

Signature

(projectile-ignored-file-p FILE &optional ROOT)

Documentation

Check if FILE should be ignored.

FILE is an absolute file 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. A file inside an ignored directory counts as ignored.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-ignored-file-p (file &optional root)
  "Check if FILE should be ignored.

FILE is an absolute file 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'.  A file inside an ignored
directory counts as ignored."
  (projectile--ignored-path-p file root nil))