Variable: projectile-global-ignore-file-patterns

projectile-global-ignore-file-patterns is a customizable variable defined in projectile.el.

Value

nil

Documentation

A list of file regexp patterns ignored by Projectile.

It complements projectile-globally-ignored-files and projectile-globally-ignored-directories. See also projectile-ignored-file-p and projectile-ignored-directory-p.

Note that files aren't filtered if projectile-indexing-method is set to alien.

This variable was added, or its default value changed, in projectile version 2.9.0.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defcustom projectile-global-ignore-file-patterns
  nil
  "A list of file regexp patterns ignored by Projectile.

It complements `projectile-globally-ignored-files' and
`projectile-globally-ignored-directories'.  See also
`projectile-ignored-file-p' and `projectile-ignored-directory-p'.

Note that files aren't filtered if `projectile-indexing-method'
is set to `alien'."
  :safe (lambda (x) (not (remq t (mapcar #'stringp x))))
  :group 'projectile
  :type '(repeat string)
  :package-version '(projectile . "2.9.0"))