**DO NOT USE!
Lately, I started using lint for static code analysis. One of the warning I get sometimes is regarding this issue. …
c coding-style return-value lintI have this code: some_list = range(a, b+1) After checking my coding style with pep8 plugin for vim, I …
python coding-style pep8Is there any good reason to avoid unused import statements in Java? As I understand it, they are there for …
java eclipse coding-style importI'm interested in putting an opening brace for functions (but not if statements and other contexts). For example void foo() { ... } …
coding-style clang clang-formatThe question from the title in code: @Transactional (readonly = true) public interface FooService { void doSmth (); } public class FooServiceImpl implements FooService { ... } …
java spring annotations coding-styleI used to use tabs for indentation and spaces for alignment. Like so (arrows show tabs and dots show spaces). …
xcode coding-style alignment indentationPossible Duplicate: JavaScript: var functionName = function() {} vs function functionName() {} In JavaScript, what's the purpose of defining a variable as a …
javascript function coding-style conventionI've seen both of the following two styles of declaring opaque types in C APIs. What are the various ways …
c coding-style struct typedef opaque-pointersAt work, we place braces on the next line, but at home, I do the opposite. Which one do you …
javascript coding-style conventionsIn c#, is there any difference in the excecution speed for the order in which you state the condition? if (…
c# coding-style