Variable: js-switch-indent-offset
js-switch-indent-offset is a customizable variable defined in
js.el.gz.
Value
0
Documentation
Number of additional spaces for indenting the contents of a switch block.
The value must not be negative.
This variable was added, or its default value changed, in Emacs 24.4.
Probably introduced at or before Emacs version 24.4.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defcustom js-switch-indent-offset 0
"Number of additional spaces for indenting the contents of a switch block.
The value must not be negative."
:type 'integer
:safe 'integerp
:version "24.4")