I am trying to integrate Flycheck into my emacs. I installed Flycheck exec-path
and js-standard
through the package manager.
My .emacs
file contains:
(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))
I have a .eslint
file in the same home location as my .emacs
(.bash_profile
as well) on unix osx yosemite.
How can I fix this obsolete status and run Flycheck. I apologize in advance for being new to linting my code, low level emacs user here.