https://github.com/hlissner/emacs-flycheck-moonscript
Flycheck support for moonscript-mode
https://github.com/hlissner/emacs-flycheck-moonscript
Last synced: 4 months ago
JSON representation
Flycheck support for moonscript-mode
- Host: GitHub
- URL: https://github.com/hlissner/emacs-flycheck-moonscript
- Owner: hlissner
- License: mit
- Created: 2019-07-09T11:46:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-24T19:50:45.000Z (almost 6 years ago)
- Last Synced: 2025-03-03T11:16:32.474Z (10 months ago)
- Language: Emacs Lisp
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flycheck-moonscript
This package provides support for the [Moonscript
language](https://moonscript.org) to the [Flycheck
package](http://www.flycheck.org).
## Installation
You have two choices of linter. `moonc` (included with moonscript) and
[moonpick](https://github.com/nilnor/moonpick). I recommend moonpick, because it
has better integration into Flycheck.
Moonscript and moonpick can be installed through luarocks:
```sh
luarocks install moonscript
# Optional
luarocks install moonpick
```
Then installed in Emacs with:
```elisp
(add-hook 'moonscript-mode-hook #'flycheck-mode)
(with-eval-after-load 'moonscript
(require 'flycheck-moonscript))
;; or
(use-package flycheck-moonscript
:after moonscript)
```