Top "Static-code-analysis" questions

Static code analysis is the analysis of computer software that is performed without actually executing it.

Visual Studio 2015 Code Analysis C6386 warns of buffer overrun

I've read a lot about the Visual Studio Code Analysis warning C8386, but can't figure out this particular issue with …

c++ visual-studio-2015 code-analysis static-code-analysis
Extending multiple recommended configurations in ESLint

The Story: Currently, we are extending the recommended ESLint configuration: { "extends": "eslint:recommended", ... "plugins": [ "angular", "jasmine", "protractor" ], "rules": { "no-multiple-empty-lines": 2, "no-trailing-spaces": 2, "…

javascript angularjs jasmine static-code-analysis eslint
How do I specify a ruleset from MSBuild

After upgrading to VS 2010 MSBUILD /p:RunCodeAnalysis=true does not work as expected msbuild solution.sln /p:RunCodeAnalysis=true To …

.net msbuild static-code-analysis
Static code analysis tools for VB6

Right now we are maintaining some old project written in VB6 we are planning to implement continuous integration server for …

vb6 static-code-analysis
How to parse an C# assembly and extract every method

For my application I'd like to parse through an assembly and extract every method and store the name of the …

c# methods assemblies code-analysis static-code-analysis
static and dynamic code analysis

I found several questions about this topic, and all of them with lot of references, but still I don't have …

code-analysis static-code-analysis dynamic-analysis
Visual Studio 2015 Code Analysis vs FxCopCmd.exe difference

I recently installed Visual Sudio 2015 and was able to run code analysis for the solution with the following command: msbuild.…

c# msbuild visual-studio-2015 fxcop static-code-analysis