Function: projectile-dirconfig-file
projectile-dirconfig-file is a byte-compiled function defined in
projectile.el.
Signature
(projectile-dirconfig-file &optional ROOT)
Documentation
Return the absolute path to ROOT's dirconfig file.
ROOT defaults to the current project's root.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-dirconfig-file (&optional root)
"Return the absolute path to ROOT's dirconfig file.
ROOT defaults to the current project's root."
(expand-file-name projectile-dirconfig-file
(or root (projectile-project-root))))