我正在嘗試將Flycheck集成到我的emacs中。我通過軟件包管理器安裝了Flycheck exec-path
和js-standard
。Flycheck程序包狀態已過時
我.emacs
文件包含:
(add-hook 'after-init-hook #'global-flycheck-mode)
;; https://github.com/purcell/exec-path-from-shell
;; only need exec-path-from-shell on OSX
;; this hopefully sets up path and other vars better
(when (memq window-system '(mac ns))
(exec-path-from-shell-initialize))
我有同樣的歸屬位置.eslint
文件作爲我的.emacs
(.bash_profile
也一樣)在UNIX上OSX優勝美地。
我該如何解決這種過時的狀態並運行Flycheck。我很抱歉提前在我的代碼中使用了低級別的emacs用戶。
謝謝我結束了從emacs社區使用你的解決方案以及實現基本的瀏覽器flycheck [flycheck-with-relative-file-eslint-exec](http://emacs.stackexchange.com/questions/ 21205/flycheck與 - 文件相對eslint可執行/ 21207#21207?newreg = 9b5e5fdeab664ecabd4a65860e232edd) – mibbit