if( ! fits)
reply
I might paste something, but mess up and forget to select one of the curly braces or select too many. I am seriously considering closing all of them on the same line in this style
if blah { thing; }
// If statements require brace brackets, and do not require parens.
var not_formatted;
var formatted;
should be: reduce the risk when mishandling filenames.
If your handling of filenames depends on IFS, you are already in big trouble!
F(condition1,
Condition2)
Is worse than
F(
Condition1, Condition2
The problem isn't tabs or spaces, it's trying to align to the length of the function name instead of adding a new line
[ "Why not just use" , "this indentation style" , "to avoid the problem" , "in the first place?" ]
Also, significant whitespace is a pain in the ass.
This one has three operations in one line:
newEl.className = newEl.className.replace(' f', ''), length++, hasFood = false;
Two space indent.
So one empty space followed by indented text (2 or more spaces)
Source: I tried this.
i should probs be working Lmfao
^(?!.*(.)(.)\2\1).*$
- Four spaces at the start of a line makes 'preformat', useful for code or lists. - You'll want to manually wrap long lines, though.
says the programmer using significant whitespace
runs for cover
/^[izehsglbo][izehsgl]o?$/
Like this. Not this.
x ** y
var ( i, j int foobarStuff string bebop bool )
reply