Variable: projectile-globally-ignored-files

projectile-globally-ignored-files is a customizable variable defined in projectile.el.

Value

("TAGS" ".projectile-cache.eld")

Documentation

A list of files globally ignored by projectile.

Entries are gitignore patterns: a plain name matches a file with that name at any depth, a name containing a slash is anchored at the project root, and *, **, ? and [...] are the usual wildcards. See projectile-globally-ignored-directories for the full pattern language.

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

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;; The options below hold nothing but a list of names, patterns or regexps,
;; and none of them can do more than widen or narrow a listing - so a project
;; is free to set any of them from its .dir-locals.el.

(defcustom projectile-globally-ignored-files
  (list "TAGS" projectile-cache-file)
  "A list of files globally ignored by projectile.

Entries are gitignore patterns: a plain name matches a file with that
name at any depth, a name containing a slash is anchored at the project
root, and `*', `**', `?' and `[...]' are the usual wildcards.  See
`projectile-globally-ignored-directories' for the full pattern language."
  :group 'projectile
  :type '(repeat string)
  :safe #'list-of-strings-p
  :package-version '(projectile . "3.0.0"))