Variable: safe-local-variable-values
safe-local-variable-values is a customizable variable defined in
files.el.gz.
Value
nil
Documentation
List of variable-value pairs that are considered safe.
Each element is a cons cell (VAR . VAL), where VAR is a variable symbol and VAL is a value that is considered safe.
Also see ignored-local-variable-values.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/files.el.gz
(defcustom safe-local-variable-values nil
"List of variable-value pairs that are considered safe.
Each element is a cons cell (VAR . VAL), where VAR is a variable
symbol and VAL is a value that is considered safe.
Also see `ignored-local-variable-values'."
:risky t
:group 'find-file
:type 'alist)