Is there an offline version of JSLint for Windows?

前端 未结 16 1787
刺人心
刺人心 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:26

    You can also use JavaScript Lint on your machine,
    get it from here
    JavaScript Lint

    There are instructions on how to integrate it into many editors/IDE's on the above site. I use it in UltraEdit and it works great.

    From the above site

    You can run JavaScript Lint several ways:

    You can integrate it into your IDE, such as Visual Studio, SciTE, or any other IDE supporting external tools. When JavaScript Lint finds an error, your IDE takes you directly to the line containing the error.

    You can run it through Windows Explorer, which Windows programmers may prefer.

    You can use the command line to integrate into your build system, or maybe you're a Linux programmer and simply prefer the command line!

提交回复
热议问题