Function: projectile--project-ignore-globs
projectile--project-ignore-globs is a byte-compiled function defined
in projectile.el.
Signature
(projectile--project-ignore-globs ROOT)
Documentation
Return ROOT's ignore patterns as gitignore globs.
That's projectile--ignore-patterns verbatim: gitignore syntax is
exactly what the tools Projectile hands these to speak (fd --exclude,
git ls-files exclude pathspecs, rg --glob).
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--project-ignore-globs (root)
"Return ROOT's ignore patterns as gitignore globs.
That's `projectile--ignore-patterns' verbatim: gitignore syntax is
exactly what the tools Projectile hands these to speak (`fd --exclude',
`git ls-files' exclude pathspecs, `rg --glob')."
(projectile--ignore-patterns root))