0
votes
2answers
107 views

Break long source lines, but only on comma

Background: I use PHPStylist to indent PHP code, which is generally working out fine. But, when it find function calls with many arguments, it puts all these arguments on one single line. So for ...
0
votes
4answers
82 views

Is there a program that automatically styles C files?

I think the title is self-explanatory. Would be handy for large files with lots of style violations. Thanks guys :)
14
votes
9answers
4k views

Code-style for indent of multi-line IF statement in Python? [duplicate]

When indenting long if conditions, you usually do something like this (actually, PyDev indents like that): if (collResv.repeatability is None or collResv.somethingElse): collResv.rejected = ...
1
vote
2answers
627 views

PHP: Using Proper Indentation with Heredocs

I just read thought php doucmentation for heredocs but I did not see any way to intent the code properly. Is this possible in php? Right now I am doing this, but this is bad for readability. ...
4
votes
4answers
642 views

What is the name of this particular indent style? (“braces stacked”)

I've seen this questions here. I'm wondering if there exists an official name for the following indent style: void fooBar(String s) { while (true) { // ... do something } } When ...
26
votes
23answers
13k views

SQL Statement indentation good practice

What is the accepted practice for indenting SQL statements? For example, consider the following SQL statement: SELECT column1, column2 FROM table1 WHERE column3 IN ( SELECT TOP(1) column4 FROM ...