Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
82 views

Is it possible to do a spell check of method names/classnames in a build step

We want to improve quality of names used in 'symbols' (classnames, methodnames, member variables) Normal spell check does not work as we can have various meaningful names that are not really ...
4
votes
4answers
106 views

preferred way to organize callbacks

In my Android project, I define a few callbacks to operate on button clicks, connectivity events, or UI events such as Dilaog.onShow(). For demo purposes, I have chosen a Runnable interface that must ...
2
votes
3answers
257 views

Source code documentation coverage tools for java

I do work on a project and write a java application. For source code quality I measure the test coverage with cobertura, and for convention checking I use checkstyle. Everything works fine in my ...
2
votes
2answers
221 views

Sonar Category Explainations

Can anybody suggest a one/two line explanation of the "five" sonar categories, in such a way that a non-developer can understand what the percentage figure means. Efficiency Maintainability ...
2
votes
4answers
310 views

ASP.NET source code quality management

In the Java world for instance, there are some very sophisticated tools to manage the quality of the source code, and that cover more than one dimension, such as : Coding Rules Comments Complexity ...
1
vote
2answers
93 views

How to auto-reformat Python code and solve simple code conventions breaks?

Is there an utility that could be run to reformat and fix simple code convention issues in Python? Let's say that you end-up with a big project that didn't followed PEP8 quite well and you want to ...
1
vote
1answer
59 views

Finding differences between code structures and folder structure

I have a large codebase that could do with some 'weeding'. I'd like to ensure that, as much as possible, these two rules are met; Each .cs file contains one class, and the two have the same name; ...
1
vote
2answers
45 views

Vertically aligned source code (should and/or how)

Call me picky but I really like vertically aligned source code. Take something like... private long getGameTime() { final String mode = GameSettings.getGameMode(this); final Resources r = ...
0
votes
1answer
38 views

Is there any source code quality tool for Adobe Flash? [closed]

Possible Duplicate: Lint tool for actionscript? I'm looking for source code quality tool (others call it "static analysis" tools) for Adobe Flash. Something like JSLint for JavaScript or ...
0
votes
1answer
185 views

problems using PMD in IntelliJ IDEA

I was trying to install the PMD plugin to my IntelliJ IDE. I have followed the instructions but when trying to run the pmd check I am getting the following exception. From what it seems the “.” Is ...
0
votes
1answer
72 views

How do you organize/structure a source file?

This is a question that has been bothering for a long time now, and I wonder how others (especially professionals, because I am still studying) organize their source files. And I am not talking about ...
0
votes
5answers
295 views

Telling quality of source code from its shape

This is a jigsaw piece I am maintaining (bonus: green = commented response.write used for debugging) So I am wondering, what kind of shape do good code tend to have?