Function: projectile--globally-ignored-file-suffixes-glob

projectile--globally-ignored-file-suffixes-glob is a byte-compiled function defined in projectile.el.

Signature

(projectile--globally-ignored-file-suffixes-glob)

Documentation

Return ignored file suffixes as a list of glob patterns.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile--globally-ignored-file-suffixes-glob ()
  "Return ignored file suffixes as a list of glob patterns."
  (mapcar (lambda (pat) (concat "*" pat)) projectile-globally-ignored-file-suffixes))