Function: projectile--parse-dirconfig-file-uncached
projectile--parse-dirconfig-file-uncached is a byte-compiled function
defined in projectile.el.
Signature
(projectile--parse-dirconfig-file-uncached &optional ROOT)
Documentation
Parse ROOT's dirconfig file without caching.
Return a projectile-dirconfig or nil if the file doesn't exist.
ROOT defaults to the current project.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--parse-dirconfig-file-uncached (&optional root)
"Parse ROOT's dirconfig file without caching.
Return a `projectile-dirconfig' or nil if the file doesn't exist.
ROOT defaults to the current project."
(let ((dirconfig (projectile-dirconfig-file root)))
(when (projectile-file-exists-p dirconfig)
(projectile--parse-dirconfig-string
(with-temp-buffer
(insert-file-contents dirconfig)
(buffer-string))))))