I have seen other text editors use extensions to allow syntax checkers such as JSLint, is this possible with Notepad++?
feedback
|
|
You may try JSLint Plugin for Notepad++: | |||||||||
feedback
|
|
I have managed to get two lint programs to run using the notepad++'s NppExec Plugin. The NppExec plugin is usually installed by default and can be found under plugins -> NppExec. (Using NppExec 0.3 RC1 and Notepad++ 5.1+).
1) JSLintfirst download the WSH version of jslint from http://www.jslint.com.
(Pre-modified version here) Next, Notepad++'s NppExec doesn't allow the use of StdIn so I wrote a batch file to actually execute the command.
You may need to modify the paths depending on where you put the jslint.js file. The conf.txt file looks like this:
Make sure there is no return carriage at the end of this line. If there is a return carriage all the lines counts will be off by one. Finally, the command I entered into NppExec is:
2) Javascript LintJavascript lint is a slightly less strict parser and was much easier to implement. First grab a copy of the windows version from http://www.javascriptlint.com/download.htm and unzip it. Then the NppExec command is:
(note: Most instructions for Javascript Lint will say to add "pauseatend" to the end of the command, I found this caused problems in Notepad++ so I left it off) Hope this helps someone, | |||||||||||||
feedback
|