Emacs: Configure prettier-js
Alan Pearce alan@alanpearce.eu
Fri, 07 Sep 2018 17:10:04 +0200
1 files changed, 9 insertions(+), 0 deletions(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -2024,6 +2024,15 @@ (setq-local flycheck-javascript-standard-executable (executable-find "prettier-standard"))) (when (executable-find "standard") (setq-local flycheck-javascript-standard-executable (executable-find "standard")))))) +;;;;;;; Prettier + +;; Reformat files on save + +(use-package prettier-js + :config (progn + (add-hook 'typescript-mode #'prettier-js-mode) + (add-hook 'js2-mode #'prettier-js-mode))) + ;;;;;;; Indium ;; Javascript with an inferior node.js process and a debugger? Awesome.