Function: projectile--first-task-file

projectile--first-task-file is a byte-compiled function defined in projectile.el.

Signature

(projectile--first-task-file PROJECT-ROOT NAMES)

Documentation

Return the first of NAMES that exists under PROJECT-ROOT.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--first-task-file (project-root names)
  "Return the first of NAMES that exists under PROJECT-ROOT."
  (seq-some (lambda (name) (projectile--task-file project-root name)) names))