Skip to main content

Questions tagged [indentation]

4 votes
3 answers
6k views

A long time ago when starting learning programming I remember a teacher saying that compiler do not care about whitespace and they are useful to make code readable for human beings. It made perfect ...
Alexei's user avatar
  • 452
3 votes
1 answer
4k views

As I have recently started using ES6 in production, I was going through an ES6 style guide (having more than 350 stars on GitHub). This guide mentions at least three times that "Tabs are evil. Don't ...
mg007's user avatar
  • 155
0 votes
3 answers
6k views

I could not find any official recommended indentation for the following idiom (straight from http://effbot.org/zone/python-with-statement.htm): with open(path) as f: data = f.read() do ...
Aristide's user avatar
  • 157
4 votes
5 answers
827 views

Is there a convenient and sustainable way to handle code indentation and style in a team in which multiple IDE's (Emacs, XCode, VS) are used by different programmers? We are using git, so, should we ...
Halil Sen's user avatar
  • 149
2 votes
1 answer
580 views

I find css quite hard to read sometimes. Indents, depending on the dom structure, would greatly increase readability. Consider the following example: #page { text-align:center; font-weight:...
phil294's user avatar
  • 179
8 votes
3 answers
233 views

In files that contain multiple languages (ie. template files), are there any best practises regarding indentation? I mostly use this: <div> IF FOO <div> <p>...
Celos's user avatar
  • 267
22 votes
8 answers
5k views

Just curious. The most I have ever had was a for loop within a for loop, because after reading this from Linus Torvalds: Tabs are 8 characters, and thus indentations are also 8 characters. There ...
Anon's user avatar
  • 3,649
2 votes
1 answer
310 views

Look at the formatting of the variable declarations. I haven't encountered this indentation style in the past, but lately I stumbled upon two different code examples which use this style. Where does ...
Paul's user avatar
  • 161
30 votes
3 answers
1k views

I am interested in finding out who introduced code indentation, as well as when and where it was introduced. It seems so critical to code comprehension, but it was not universal. Most Fortran and ...
Daniel Mahler's user avatar
16 votes
5 answers
9k views

I hear a lot that you should not write functions larger than one screen size, that you should extract things into functions if you call things very often and all these coding guidelines. One of them ...
reox's user avatar
  • 293
9 votes
4 answers
2k views

Our development process is as follows code the task -> someone else QAs code and documentation -> task is merged into trunk. Recently a colleague is refusing to pass the code QA due to issues with ...
dwjohnston's user avatar
  • 2,769
15 votes
7 answers
7k views

I have two friends that have completely different schools of thought on how to lay out their code. The first says that code should be well-indented and use lots of spaces and to name variables ...
Peter Olson's user avatar
  • 1,062
21 votes
5 answers
10k views

The advantage of using tabs for indentation is that people can configure their editor to use the tab width they are comfortable with. The only argument against this seems to be that people don't want ...
Overv's user avatar
  • 1,160
1 vote
1 answer
2k views

I realise that this question may be down to personal preference but I'm pretty new to Bash / shell scripting so thought it'd be worth some research to see if there's some sort of standard/best ...
Bucky's user avatar
  • 185
25 votes
6 answers
5k views

Code formatting matters. Even indentation matters. And consistency is more important than minor improvements. But projects usually don't have a clear, complete, verifiable and enforced style guide ...
l0b0's user avatar
  • 11.6k

15 30 50 per page