Variable: projectile-globally-ignored-file-suffixes

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

Value

nil

Documentation

A list of file suffixes globally ignored by projectile.

Each suffix is matched at the end of a file name at any depth, as if it were the gitignore pattern *SUFFIX (e.g. ".elc" ignores every
.elc file in the project).

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

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-globally-ignored-file-suffixes
  nil
  "A list of file suffixes globally ignored by projectile.
Each suffix is matched at the end of a file name at any depth, as if it
were the gitignore pattern `*SUFFIX' (e.g. \".elc\" ignores every
`.elc' file in the project)."
  :group 'projectile
  :type '(repeat string)
  :safe #'list-of-strings-p
  :package-version '(projectile . "0.12.0"))