Variable: ruby-flymake-use-rubocop-if-available
ruby-flymake-use-rubocop-if-available is a customizable variable
defined in ruby-mode.el.gz.
Value
t
Documentation
Non-nil to use the RuboCop Flymake backend.
Only takes effect if RuboCop is installed.
If there is no Rubocop config file, Rubocop will be passed a flag
'--lint' to only show syntax errors and important problems.
This variable was added, or its default value changed, in Emacs 26.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/ruby-mode.el.gz
(defcustom ruby-flymake-use-rubocop-if-available t
"Non-nil to use the RuboCop Flymake backend.
Only takes effect if RuboCop is installed.
If there is no Rubocop config file, Rubocop will be passed a flag
'--lint' to only show syntax errors and important problems."
:version "26.1"
:type 'boolean
:safe 'booleanp)