Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/purcell/flymake-jslint
Emacs flymake syntax-checker for javascript using jslint
https://github.com/purcell/flymake-jslint
Last synced: 3 days ago
JSON representation
Emacs flymake syntax-checker for javascript using jslint
- Host: GitHub
- URL: https://github.com/purcell/flymake-jslint
- Owner: purcell
- Created: 2011-10-13T18:47:22.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T07:33:12.000Z (3 months ago)
- Last Synced: 2024-12-02T18:11:13.308Z (2 months ago)
- Language: Emacs Lisp
- Homepage:
- Size: 9.77 KB
- Stars: 18
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
flymake-jslint.el
=================An Emacs flymake handler for syntax-checking Javascript source code
using [`jslint`](http://jslint.com/) or [`jsl`](http://javascriptlint.com/).Installation
=============If you choose not to use one of the convenient packages in
[Melpa][melpa] and [Marmalade][marmalade], you'll need to add the
directory containing `flymake-jslint.el` to your `load-path`, and then
`(require 'flymake-jslint)`. You'll also need to install
[flymake-easy](https://github.com/purcell/flymake-easy).Usage
=====Add the following to your emacs init file:
(require 'flymake-jslint) ;; Not necessary if using ELPA package
(add-hook 'js-mode-hook 'flymake-jslint-load)The default checker is `jsl`, if that executable is
found at load-time. Otherwise, `jslint` is the default. If you want
to use the non-default checker, you can customize the values of
`flymake-jslint-command` and `flymake-jslint-args` accordingly.[marmalade]: http://marmalade-repo.org
[melpa]: http://melpa.org
[💝 Support this project and my other Open Source work via Patreon](https://www.patreon.com/sanityinc)
[💼 LinkedIn profile](https://uk.linkedin.com/in/stevepurcell)
[✍ sanityinc.com](http://www.sanityinc.com/)