Is there an offline version of JSLint for Windows?

前端 未结 16 1741
刺人心
刺人心 2021-02-05 03:05

I would like to check my JavaScript files without going to JSLint web site.
Is there a desktop version of this tool for Windows?

相关标签:
16条回答
  • 2021-02-05 03:27

    A Visual Studio addin can be found here.

    It is a bit rough but gets the job done.

    I have just joined the project and will be bringing it up to date in the next few months.

    0 讨论(0)
  • 2021-02-05 03:31

    We've found JSLint4Java very good. If you're using Ant to build your project then the Ant task it provides is particularly useful.

    0 讨论(0)
  • 2021-02-05 03:36

    You can integrate the tool this guy has made into Visual Studio.

    http://jason.diamond.name/weblog/2008/08/09/verifying-javascript-with-jslint-and-visual-studio/#content

    Just disable the options you don't need.

    0 讨论(0)
  • 2021-02-05 03:37

    From http://www.jslint.com/lint.html:

    The analysis is done by a script running on your machine. Your script is not sent over the network.

    It is also available as a Konfabulator widget. You can check a file by dragging it and dropping it on the widget. You can recheck the file by double-clicking the widget.

    It is also available in a WSH Command Line version.

    It is also available in a Rhino Command Line version.

    Or since JSLint is a JavaScript program running in your browser - you could grab the script and run it locally.

    0 讨论(0)
提交回复
热议问题