Skip to content

Instantly share code, notes, and snippets.

@leshy
Created February 14, 2016 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leshy/70455d4dc00dd83d9bfa to your computer and use it in GitHub Desktop.
Save leshy/70455d4dc00dd83d9bfa to your computer and use it in GitHub Desktop.
;flycheck livescript
(flycheck-define-checker livescript
"A Livescript syntax checker using livescript.
See URL `http://livescript.net/'."
:command ("livescript" "--compile" "--print" "--stdin")
:standard-input t
:error-patterns
((error line-start "[" (message) "on line " line "]" line-end))
:modes livescript-mode)
(add-to-list 'flycheck-checkers 'livescript t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment