Variable: checkdoc--dired-skip-lines-re
checkdoc--dired-skip-lines-re is a variable defined in checkdoc.el.gz.
Value
"^\\(?:;; \\(?: Generated by the command \\|Generated from Unicode data files by unidat\\|This file is automatically generated from\\)\\)\\|\\.el --- automatically extracted autoloads -\\*- lexical-binding: t -\\*-\\|;;; lisp/trampver\\.el\\. Generated from trampver\\.el\\.in by configure\\."
Documentation
Regexp that when it matches tells checkdoc-dired to skip a file.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
(defconst checkdoc--dired-skip-lines-re
(rx (or (seq bol
(or ";; Generated from Unicode data files by unidat"
";; This file is automatically generated from"
";; Generated by the command "))
".el --- automatically extracted autoloads -*- lexical-binding: t -*-"
";;; lisp/trampver.el. Generated from trampver.el.in by configure."))
"Regexp that when it matches tells `checkdoc-dired' to skip a file.")