Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kilian/gedit-jshint
a JSHint plugin for gedit
https://github.com/kilian/gedit-jshint
Last synced: 15 days ago
JSON representation
a JSHint plugin for gedit
- Host: GitHub
- URL: https://github.com/kilian/gedit-jshint
- Owner: Kilian
- Created: 2011-02-26T20:41:53.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-02-28T11:26:36.000Z (over 13 years ago)
- Last Synced: 2024-05-08T17:05:15.093Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 925 KB
- Stars: 14
- Watchers: 7
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSHint plugin for Gedit
gedit-jshint is a plugin that allow you to check javascript files with the jshint syntax checker.
For more infomation on JSHint, visit [jshint.com](http://jshint.com).
It is based on the [gedit-jslint plugin](https://github.com/Kilian/gedit-jslint]) by Caolan McMahon (2008) and Kilian Valkhof (2009 - 2011)## INSTALLING:
To install extract the files to: ~/.gnome2/gedit/plugins/
## DEPENDENCIES:
It requires rhino and simplejson. On Ubuntu 10.04 and later you can get the packages with the following command:
sudo apt-get install rhino python-simplejsonOn earlier versions of Ubuntu, and on certain other Linux systems, you might need "spidermonkey" instead of "rhino".
## USAGE:
The plugin should then appear in the Gedit plugins list under Edit > Preferences > Plugins.
Click Tools > JSHint Check or press Shift+Ctrl+j to run it.
In the configuration dialog you can edit your globals and your configuration. A default configuration is supplied:
/* curly: true, eqeqeq: true, forin: true, undef: true,*/
By default, no globals are defined.