gpt4 book ai didi

javascript - 具有多个文件的 JSLint

转载 作者:行者123 更新时间:2023-12-03 02:21:59 24 4
gpt4 key购买 nike

JSLint 仅适用于一个 JavaScript 文件。最近,我开始将我的程序分成几个部分。

我不想每次使用 JSLint 检查代码时都将这些片段串起来。使用 JSLint 处理多个文件的标准解决方案是什么?

最佳答案

有一个 JSLint (node-JSLint)(命令行)版本允许您一次检查多个文件。点击 GitHub 上的下载链接:

https://github.com/reid/node-jslint

以下通过命令行调用的示例:

JSLint app.js
JSLint lib / lib worker.js / server.js # Multiple files
JSLint - white - onevar - regexp app.js JSLint # All options supported
JSLint - bitwise false app.js # Defaults to true, but You Can Specify false
JSLint - goodparts - # undef false app.js The Good Parts, except undef
JSLint-gp app.js # Shorthand for - goodparts:-gp
find . -name "*.js" -print0 | xargs -0 jslint # JSLint JSLint your Entire Project

注意:此应用程序是针对 NodeJS 开发的。

关于javascript - 具有多个文件的 JSLint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7628009/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com