osx - Flycheck package status obsolete -
i trying integrate flycheck emacs. installed flycheck exec-path
, js-standard
through package manager.
my .emacs
file contains:
(add-hook 'after-init-hook #'global-flycheck-mode) ;; https://github.com/purcell/exec-path-from-shell ;; need exec-path-from-shell on osx ;; sets path , other vars better (when (memq window-system '(mac ns)) (exec-path-from-shell-initialize))
i have .eslint
file in same home location .emacs
(.bash_profile
well) on unix osx yosemite.
how can fix obsolete status , run flycheck. apologize in advance being new linting code, low level emacs user here.
emacs marks packages “obsolete” if newer version of package loaded. emacs never loads obsolete versions, obsolete versions may safely removed. go package menu in m-x list-packages
, type ~
(mark obsolete packages removal) , x
(execute actions). alternatively type u
, x
conduct full upgrade of packages includes removal of obsolete packages.
in case “obsolete” status doesn't have impact on package @ all: it'll continue work normally.
if flycheck not work you, please ask new question flycheck specifically, , include debugging information. note there's dedicated emacs community on stackexchange question better placed.
Comments
Post a Comment