ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Js​Validate

by duereg ALL

Validate the syntax of any JavaScript file in Sublime Text using Esprima

Details

Installs

  • Total 12K
  • Win 7K
  • Mac 4K
  • Linux 2K
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 2 0 1 1 0 0 0 2 0 0 0 0 0 0 1 1 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 1
Mac 0 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0
Linux 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 1 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

  1. command-shift-P or control-shift-P in Linux/Windows*
  2. type install p, select Package Control: Install Package
  3. type JsValidate, select JsValidate

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 Palette
  • F4 jump to next error row/column
  • shift-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.