Variable: projectile-dirconfig-file

projectile-dirconfig-file is a customizable variable defined in projectile.el.

Value

".projectile"

Documentation

The file which serves both as a project marker and configuration file.

The mere presence of this file in a directory marks that directory as a Projectile project root, even when the file is empty. When the file has content, it is parsed by projectile-parse-dirconfig-file to drive + keep / - ignore / ! ensure rules; see the manual for the full format.

This should _not_ be set via .dir-locals.el.

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

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-dirconfig-file
  ".projectile"
  "The file which serves both as a project marker and configuration file.

The mere presence of this file in a directory marks that directory
as a Projectile project root, even when the file is empty.  When
the file has content, it is parsed by `projectile-parse-dirconfig-file'
to drive `+' keep / `-' ignore / `!' ensure rules; see the manual
for the full format.

This should _not_ be set via .dir-locals.el."
  :group 'projectile
  :type 'file
  :package-version '(projectile . "2.7.0"))