Variable: ignored-local-variable-values
ignored-local-variable-values is a customizable variable defined in
files.el.gz.
Value
nil
Documentation
List of variable-value pairs that should always be ignored.
Each element is a cons cell (VAR . VAL), where VAR is a variable symbol and VAL is its value; if VAR is set to VAL by a file-local variables section, that setting should be ignored.
Also see safe-local-variable-values.
This variable was added, or its default value changed, in Emacs 28.1.
Probably introduced at or before Emacs version 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/files.el.gz
(defcustom ignored-local-variable-values nil
"List of variable-value pairs that should always be ignored.
Each element is a cons cell (VAR . VAL), where VAR is a variable
symbol and VAL is its value; if VAR is set to VAL by a file-local
variables section, that setting should be ignored.
Also see `safe-local-variable-values'."
:risky t
:group 'find-file
:type 'alist
:version "28.1")