leto / jslint.vim

VIM plugin and command line tool for running JSLint <http://jslint.com/>. This is alpha software and is under heavy development.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jslint.vim
=============

VIM plugin and command line tool for running JSLint <http://jslint.com/>.

JSLint is a handy tool that spots errors and common mistakes in 
javascript code.

This is alpha software and is under heavy development.


Installation and Use
-----------------------

- install the Spidermonkey standalone javascript interpreter
    $ sudo apt-get install sipdermonkey-bin

- copy fulljslint.js, runjslint.js, and jslint.vim into your working 
  directory

- in vim, run the following command:
    :source jslint.vim

- Press <F5> to check any javascript file that you are working on
  for problems. Problems will be highlighted in red. Press <F5> again
  once the problems are corrected for an update.

- To get a detailed report of any issues in your javascript file,
  run jslint from a terminal using Spidermonkey with this command:
    $ js runjslint.js < <yourfile>


License
---------

Copyright (c) 2008 Jesse Hallett <hallettj@gmail.com>, except where otherwise noted

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

The Software shall be used for Good, not Evil.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

VIM plugin and command line tool for running JSLint <http://jslint.com/>. This is alpha software and is under heavy development.

License:Other