Auto-format current buffer with prettier-eslint
M-x prettier-eslint
To automatically format after saving:
(add-hook 'js2-mode-hook (lambda () (add-hook 'after-save-hook 'prettier-eslint nil t)))
(add-hook 'react-mode-hook (lambda () (add-hook 'after-save-hook 'prettier-eslint nil t)))
In Spacemacs add the above to your dotspacemacs/user-config
Otherwise:
(eval-after-load 'js2-mode
'(add-hook 'js2-mode-hook (lambda () (add-hook 'after-save-hook 'prettier-eslint nil t))))
MIT