Variable: js-jsx--attribute-name-re
js-jsx--attribute-name-re is a variable defined in js.el.gz.
Value
"[[:alpha:]_$]\\(?:\\s_\\|\\sw\\|-\\)*"
Documentation
Like js--name-re, but matches “-” as well.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defconst js-jsx--attribute-name-re (concat js--name-start-re
"\\(?:\\s_\\|\\sw\\|-\\)*")
"Like `js--name-re', but matches “-” as well.")