Variable: inhibit-local-variables-suffixes
inhibit-local-variables-suffixes is a variable defined in files.el.gz.
Value
("\\.zst\\'" "\\.dz\\'" "\\.xz\\'" "\\.lzma\\'" "\\.lz\\'" "\\.g?z\\'"
"\\.bz2\\'" "\\.Z\\'")
Documentation
List of regexps matching suffixes to remove from file names.
The function inhibit-local-variables-p uses this: when checking
a file name, it first discards from the end of the name anything that
matches one of these regexps.
Source Code
;; Defined in /usr/src/emacs/lisp/files.el.gz
(defvar inhibit-local-variables-suffixes nil
"List of regexps matching suffixes to remove from file names.
The function `inhibit-local-variables-p' uses this: when checking
a file name, it first discards from the end of the name anything that
matches one of these regexps.")