JsValidate
Validate the syntax of any JavaScript file in Sublime Text using Esprima
Details
Installs
- Total 12K
- Win 7K
- Mac 4K
- Linux 2K
Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
JsValidate for Sublime Text
Check your JavaScript for syntax errors: Esprima with everyone's favorite text editor: Sublime Text
Prerequisites: EsValidate and Sublime Package Control
Mac OS X: Installing node with homebrew or macports is assumed. The path to esvalidate is hardcoded in this plugin as /usr/local/share/npm/bin:/usr/local/bin:/opt/local/bin
. There is no reliable way to get the path from your environment.
Linux: Make sure esvalidate is in your environment path.
Windows: Installing node with the Windows Installer from nodejs.org is assumed.
Install esvalidate with npm
npm install -g esvalidate
Install JsValidate with Package Control in Sublime Text
command
-shift
-P
orcontrol
-shift
-P
in Linux/Windows*- type
install p
, selectPackage Control: Install Package
- type
JsValidate
, selectJsValidate
Note: Without Sublime Package Control, you could manually copy this project to your Packages directory as 'JsValidate'.
Run JsValidate on an active JavaScript file in Sublime Text
control
-shift
-V
or Tools/Contextual menus or the Command PaletteF4
jump to next error row/columnshift
-F4
jump to previous error row-column
Settings
- Navigate to Preferences > Package Settings > JsValidate > Settings - Default.
- To preserve custom settings:
- copy default settings to Preferences > Package Settings > JsValidate > Settings - User
- modify them to your requirements
Run JsValidate on save
By default, JsValidate does not run on save. To change, simply change the setting run_on_save
for the project to true
.
Error: unknown report format sublime.
Seeing this error means you are using an outdated version of EsValidate. Update to the latest version and this error should go away.
Blog Posts
I wrote some blog posts about creating this plugin and the esvalidate library here.