Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

83
votes
20answers
12k views

What static analysis tools are available for C#?

What tools are there available for static analysis against C# code? I know about FxCop and StyleCop. Are there others? I've run across NStatic before but it's been in development for what seems like ...
55
votes
9answers
14k views

C/C++ Free alternative to Lint?

I'm interested in a free tool that can statically check my C++ code like Lint does. Any hints?
38
votes
33answers
2k views

Why is code quality not popular?

I like my code being in order, i.e. properly formatted, readable, designed, tested, checked for bugs, etc. In fact I am fanatic about it. (Maybe even more than fanatic...) But in my experience actions ...
37
votes
11answers
1k views

Code analysis and task assignment in java

I've recently watched an interesting talk on how a part of the Jet Propulsion Laboratory is doing their code review. Essentially they have a tool (Scrub) that: Runs various code analyzers on the ...
28
votes
9answers
18k views

Tool for calculating cyclomatic complexity

Can you recommend free tools for calculating cyclomatic complexity. Looking for all languages. One tool/language per answer please.
27
votes
7answers
10k views

Collection<T> versus List<T> what should you use on your interfaces?

The code looks like below: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Test { public interface IMyClass { List<IMyClass> ...
25
votes
6answers
10k views

How do I fix PyDev “Undefined variable from import” errors?

I've got a Python project using PyDev in Eclipse, and PyDev keeps generating false errors for my code. I have a module settings that defines a settings object. I import that in module b and assign ...
25
votes
2answers
608 views

Tool to determine what lowest version of Python required?

Is there something similar to Pylint, that will look at a Python script (or run it), and determine which version of Python each line (or function) requires? For example, theoretical usage: $ ...
22
votes
5answers
5k views

How to get the FxCop custom dictionary to work?

How is it possible to get the FxCop custom dictionary to work correctly? I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same folder as the FxCop ...
22
votes
6answers
3k views

Automatic code quality tool for Ruby?

One thing I really miss about Java is the tool support. FindBugs, Checkstyle and PMD made for a holy trinity of code quality metrics and automatic bug checking. Is there anything that will check ...
21
votes
3answers
15k views

Visual Studio Code Analysis vs StyleCop + FxCop

I used previously StyleCop + FxCop on my Visual Studio's projects. But now I am testing Visual Studio Code Analysis tool, which is easier to integrate into MSBuild, and I have found that this tools ...
19
votes
4answers
527 views

Spaghetti code visualisation software?

a smoking pile of spaghetti just landed on my desk, and my task is to understand it (so I can refactor / reimplement it). The code is C, and a mess of global variables, structure types and function ...
19
votes
1answer
3k views

How can I generate a list of function dependencies in MATLAB?

In order to distribute a function I've written that depends on other functions I've written that have their own dependencies and so on without distributing every m-file I have ever written, I need to ...
18
votes
6answers
4k views

Static Actionscript code analysis?

I want to see class, function and variable/property, dependencies visually, like NDepend, but for ActionScript 2 or AS3 code. Any programs or ideas? Use Doxygen in some way? FlexUnit?
17
votes
3answers
12k views

How do I generate Emma code coverage reports using Ant?

How do I setup an Ant task to generate Emma code coverage reports?
15
votes
1answer
139 views

Tool to help eliminate wildcard imports

I'm refactoring and eliminating wildcard imports on some fairly monolithic code. Pylint seems to do a great job of listing all the unused imports that come along with a wildcard import, but what i ...
15
votes
5answers
601 views

How can I make sure all my Python code “compiles”?

My background is C and C++. I like Python a lot, but there's one aspect of it (and other interpreted languages I guess) that is really hard to work with when you're used to compiled languages. When ...
15
votes
4answers
5k views

How to determine maximum stack usage?

What methods are available for determining the optimum stack size for embedded/memory constrained system? If it's too big then memory is wasted that could be used elsewhere. However, if it is too ...
15
votes
16answers
5k views

Tool to visualise code flow (C/C++)

Do you have any sugestions of tools to ease the task of understanding C/C++ code? We just inherited a large piece of software written by others and we need to quickly get up to speed on it. Any advice ...
14
votes
5answers
673 views

Tools to detect duplicated code (Java)

I am in a project where previous programmers have been copy-pasting codes all over the place. These codes are actually identical (or very similar) and they could have been refactored into one. I have ...
14
votes
6answers
2k views

tool to detect C# code smells

I'm working with C# and I was hoping to find some tools akin to those I'm used to in Ruby and Ruby on Rails for detecting code smells. I'm referring to things like Roodi, Flay, Flog, Reek, Rcov, and ...
13
votes
7answers
2k views

Is there a tool for finding unreferenced functions (dead, obsolete code) in a C# app?

I want to delete foo() if foo() isn't called from anywhere.
12
votes
4answers
235 views

Alias Analysis in Java

Can somebody point me to a framework or an implementation of alias analysis for Java. I looked at the asm framework but it only provides data flow analysis and control flow analysis. Update: Just ...
12
votes
5answers
761 views

C# - StyleCop - SA1121: UseBuiltInTypeAlias - Readability Rules

Not found it in StyleCop Help Manual, on SO and Google so here it is ;) During StyleCop use I have a warning: SA1121 - UseBuiltInTypeAlias - Readability Rules The code uses one of the ...
12
votes
7answers
2k views

Where can I find an actively developed lint tool for Ruby?

Most of the code I write is in Ruby, and every once in a while, I make some typo ( which only gets caught after a while ). This can suck when you have your scripts do some long running tasks, and you ...
12
votes
14answers
2k views

What tools do you use for static code analysis?

This question on Cyclomatic Complexity made me think more about static code analysis. Analyzing code complexity and consistency is occasionally useful, and I'd like to start doing it more. What ...
11
votes
1answer
1k views

Tools for generating Haskell function dependency (control flow) graph?

Note not "functional dependency". Are there tools available that allow me to build a static function dependency graph from source code? Something which indicates to me which functions depend on which ...
11
votes
4answers
553 views

Can one make Code Analysis understand Code Contracts?

When using Code Analysis and Code Contracts in combination, I get a lot of warnings like CA1062: Microsoft.Design : In externally visible method 'Foo.Bar(Log)', validate parameter 'log' before using ...
11
votes
5answers
2k views

The “Why” behind PMD's rules

Is there a good resource which describes the "why" behind PMD rule sets? PMD's site has the "what" - what each rule does - but it doesn't describe why PMD has that rule and why ignoring that rule can ...
10
votes
5answers
289 views

C - How to find all inner loops using grep?

I have a giant C project with numerous C files. I have to find all inner-loops. I am sure there is no any O(n³) block in the project, so only O(n²)-compexity blocks must be found (a loop in a loop). ...
10
votes
2answers
172 views

I am looking for a recursion analysis tool

I ran into a problem this weekend where method 1 called method 2 which called method 3 which caught exception, and within the exception handling method 1 was called again... M1 -> M2 -> M3 -> M1 .... ...
10
votes
3answers
5k views

How to enable Code Analysis in Visual Studio 2010 Professional?

I can see that we can enable code analysis in Visual Studio Team Systems. But i am using Visual Studio 2010 Professional. Do we have any option to enable code analysis in this version or can we ...
10
votes
8answers
1k views

Any tools to check for duplicate VB.NET code?

I wish to get a quick feeling for how much “copy and paste” coding we have, there are many tools for C# / Java to check for this type of thing. Are there any such tools that work well with VB.NET? ...
10
votes
9answers
2k views

Analyzing Code for Efficiency?

What kinds of tools do you use to determine the efficiency of code? Do you use home grown applications that run a statistically significant number of tests, or some commercial product? Do you use your ...
10
votes
6answers
5k views

C# Call Graph Generation Tool

I just got a heaping pile of (mostly undocumented) C# code and I'd like to visualize it's structure before I dive in and start refactoring. I've done this in the past (in other languages) with tools ...
10
votes
6answers
1k views

Lint tool for actionscript?

Are there any lint tools available for actionscript? One source would be ideal, but anything is welcome. My team is starting to adopt more a more rigorous style guide (where "more rigorous" means ...
10
votes
6answers
8k views

JavaScript Source Code Analyzer

Does anyone know of a good, extensible source code analyzer that examines JavaScript files?
10
votes
5answers
807 views

Exception analysis tool for C++

I've been looking for a tool to extract exception information from a C++ program. The most wanted feature I'm looking for: I want to know all the exceptions that can be thrown from a function (which ...
9
votes
5answers
156 views

Correct IDisposable implementation for this code

I have the following code public static byte[] Compress(byte[] CompressMe) { using (MemoryStream ms = new MemoryStream()) { using (GZipStream gz = new GZipStream(ms, ...
9
votes
2answers
196 views

Looking for a code analysis tool for PowerShell

Something like lint that will help find common coding errors (like using = instead of -eq in a condition). Using set-strictmode helps some, but it would be nice if there was something that was ...
9
votes
3answers
3k views

SVN analysis tool

I have been searching all over the net to find something remotely usable. I tried all kinds of HTML based tools for analyzing an SVN repository (commits by users, reports etc) but none of them are ...
9
votes
7answers
3k views

Alternative to StyleCop for Visual Studio?

I like StyleCop's static code analysis and rules enforcement. However, it is severely lacking in several key departments. Adding new rules isn't officially supported and from what I hear pretty ...
9
votes
2answers
475 views

Understanding code metrics

I recently installed the Eclipse Metrics Plugin and have exported the data for one of our projects. It's all very good having these nice graphs but I'd really like to understand more in depth what ...
8
votes
3answers
342 views

How to determine maximum stack usage in embedded system with gcc?

I'm writing the startup code for an embedded system -- the code that loads the initial stack pointer before jumping to the main() function -- and I need to tell it how many bytes of stack my ...
8
votes
7answers
539 views

How to parse C++ source in Python?

We want to parse our huge C++ source tree to gain enough info to feed to another tool to make diagrams of class and object relations, discern the overall organization of things etc. My best try so ...
8
votes
8answers
242 views

How to identify what state variables are read/written in a given method in C#

What is the simplest way to identify if a given method is reading or writing a member variable or property? I am writing a tool to assist in an RPC system, in which access to remote objects is ...
8
votes
5answers
1k views

Is there any way to find unreferenced code in Flex Builder?

We've got several Flex projects, one of which has just been refactored. I'm wondering if there's an easy way to tell which classes and functions (if any) aren't being used any more? I've discovered ...
8
votes
6answers
210 views

How to analyze an open source code without (or with not enough) documentation?

I got an open source code, about 15 mb. I want to understand the main algorithm used there. I started analyzing every part of that code, but I think it will take a lot of time. Are there any ...
8
votes
5answers
334 views

php best practices enforcement

I try to ensure that the code I write is of the best quality possible, so I strive to follow accepted sets of best practices. In perl, I try to follow the guidelines in the popular book "Perl Best ...
8
votes
4answers
2k views

Lint for C#

Is there a lint-like tool for C#? I've got the compiler to flag warnings-as-errors, and I've got Stylecop, but these only catch the most egregious errors. Are there any other must-have tools ...

1 2 3 4 5 11