我正在尝试将 Flycheck 集成到我的 emacs 中。我通过包管理器exec-path
安装了 Flycheck 。js-standard
我的.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))
我在 unix osx yosemite 上的(以及)我的(以及).eslint
相同的家庭位置有一个文件。.emacs
.bash_profile
如何修复此过时状态并运行 Flycheck。我提前为我的代码 linting 的新手道歉,这里是低级别的 emacs 用户。