用于 Objective-C 开发的 Lint 检查工具
Closed. This question is seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. It does not …
Verilog linting 工具?
Closed. This question is seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. It does not …
是否有 OCaml 工具支持使用 Perl 的 Perl::Critic 模块等最佳实践?
是否存在一种工具可以分析 OCaml 程序并提出风格和代码方面的一些改进建议?在 Perl 的世界里仍然存在 Perl::Critic 避免不良风格。 我需要的是一些工…
PHP Web 应用程序的服务器端性能测试
在我被标记为类似文章的欺骗之前: [http://stackoverflow.com/questions/635123/what-is-a-good-tool-or-site-to-use-to-performance-test-a-web-pag…
是什么导致 xmllint 警告?
我目前正在为我们的集成服务器编写一个插件,该插件使用 libxml2 的 xmllint 命令行工具来验证 XML 文件。根据 手册,xmllint 有一个 --nowarning 选…
如何检查 (My)SQL 语句的语法正确性
Closed. This question is seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. It does not …
是否有适用于 C 和 C++ 的 lint 工具检查格式?
Closed. This question is seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. It does not …
在哪里可以找到针对 Ruby 积极开发的 lint 工具?
我编写的大部分代码都是用 Ruby 编写的,每隔一段时间,我就会犯一些拼写错误,但过一段时间后才会被发现。当我让我的脚本运行很长的任务,然后返回发…
JavaScript 中每个函数一个 var?
我一直在使用 JSLint 让我对我的 JavaScript 感觉很糟糕。 顺便说一句,这很棒。 有一项检查我不太明白,请您发表意见。 来自 jslint.com: 在具有块…
在 c 中: func(void) 与 func()
当 C 函数不接受任何参数时,是否必须按照语言规则使用“void”参数来声明/定义它? 当参数列表中没有任何内容时,PC-Lint 似乎会出现问题,我想知道…
JavaScript Lint inc_dec_within_stmt 警告
发出警告的原因/重要性? inc_dec_within_stmt - increment (++) and decrement (--) operators used as part of greater statement 这样的代码行时 s…
使用两个枚举的重载解决方案
我们有一些代码,大致如下所示: // Two enums that differ entirely. enum A { a1, a2 }; enum B { b1, b2 }; // Functions to convert in some mean…