Skip to content

Instantly share code, notes, and snippets.

View blue0513's full-sized avatar
🤩
Always Happy Boy

Taiju Aoki blue0513

🤩
Always Happy Boy
View GitHub Profile
@blue0513
blue0513 / eslint-auto.el
Last active January 3, 2020 15:50 — forked from ustun/eslint-auto.el
run eslint --fix on emacs file save
;; forked from https://gist.github.com/ustun/73321bfcb01a8657e5b8
(defun eslint-fix-file ()
(interactive)
(call-process-shell-command
(concat "eslint --fix " (buffer-file-name)) nil 0))
(defun eslint-fix-file-and-revert ()
(interactive)
(eslint-fix-file)