commit 5bfe8532a794c4c496e8dc7853af75b57b835b9b
parent 0666b6cefe9a51a8ec69b8f538d9f72f6b359829
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date: Thu, 28 Mar 2019 09:55:03 -0400
Add description to make flycheck-julia work under Julia 1.0.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.org b/README.org
@@ -1188,12 +1188,12 @@ Official major mode for =julia=. This is required as a dependency for =ess-julia
#+END_SRC
*** Flycheck Support
-Flycheck support via =flycheck-julia=.
+Flycheck support via =flycheck-julia=. This relies on [[https://github.com/tonyhffong/Lint.jl][Lint.jl]], which doesn't have a release yet for Julia 1.0. A work around is to give the repository URL to =Pkg= instead of the package name and fix 1.0 incompatibilities as they show up.
#+BEGIN_SRC emacs-lisp
(use-package flycheck-julia
:ensure t
:init
- (add-hook 'julia-mode-hook #'flycheck-julia-setup))
+ (add-hook 'ess-julia-mode-hook #'flycheck-julia-setup))
#+END_SRC
*** Better REPL