"Static Analysis" refers to the software tools (or their use) to analyze application code for arbitrary properties, such as errors (uninitialized variables, possible SQL injection-attack, is this code-dead, can an argument be null,...) or structure (what is the call graph for this code?
What tools are there available for static analysis against C# code? I know about FxCop and StyleCop. Are there others? …
c# code-analysis static-analysisIs there an static analysis tool for PHP source files? The binary itself can check for syntax errors, but I'm …
php code-analysis static-analysisJava has some very good open source static analysis tools such as FindBugs, Checkstyle and PMD. Those tools are easy …
c++ coding-style static-analysisI'm used to having my compiler complain when I do something stupid like a typo on a variable name but …
javascript static-analysisWhat is the difference between the two? Both seem to mean that the value may be null and should be …
java annotations static-analysis findbugsWe are introducing static analysis tools into the build system for our Java product. We are using Maven2 so Checkstyle …
java static-analysis findbugs checkstyle pmdI'm trying to generate calling graph with which to find out all the possible execution paths that are hitting a …
c++ static-analysis call-graphBeing vaguely familiar with the Java world I was googling for a static analysis tool that would also was intelligent …
java static-analysisI would very much like to integrate pylint into the build process for my python projects, but I have run …
python django static-analysis pylintThere was a question comparing PMD and CheckStyle. However, I can't find a nice breakdown on the differences/similarities between …
java static-analysis findbugs pmd