Variable: verilog-linter
verilog-linter is a customizable variable defined in
verilog-mode.el.gz.
Value
"echo 'No verilog-linter set, see \"M-x describe-variable verilog-linter\"'"
Documentation
Unix program and arguments to call to run a lint checker on Verilog source.
Depending on the verilog-set-compile-command, this may be invoked when
you type M-x compile (compile). When the compile completes, C-x ` (next-error) will take
you to the next lint error.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defcustom verilog-linter
"echo 'No verilog-linter set, see \"M-x describe-variable verilog-linter\"'"
"Unix program and arguments to call to run a lint checker on Verilog source.
Depending on the `verilog-set-compile-command', this may be invoked when
you type \\[compile]. When the compile completes, \\[next-error] will take
you to the next lint error."
:type 'string
:group 'verilog-mode-actions)