JSLint with multiple files

后端 未结 7 553
旧巷少年郎
旧巷少年郎 2020-12-11 14:22

JSLint works fine for just one JavaScript file. Recently, I\'ve started breaking my program into several pieces.

I don\'t want to be stringing the pieces each time I

7条回答
  •  遥遥无期
    2020-12-11 15:08

    What's wrong with just running the command?

    jslint .
    

    will check all js files in the current directory and recurse down the tree.

提交回复
热议问题