For all code languages, we require indentation to be
done via soft tabs (using the space character). Hitting
Tab in your text editor shall be equivalent to four spaces.
Umm, who died and made you king? <tongue and cheek> I don't like using 4 spaces. I find it a waste of space, literally. In ruby community, 2 spaces is generally accepted.With that said, it's probably not a bad idea to have discussions around such standards with the understanding that there may be more than one good way to skin a cat.
As much as you don't like using 4 spaces, it's much worse to have a codebase littered with some sections using 4 spaces, some sections using tabs, some sections using 2 spaces, some sections using 8 spaces, and some sections using a random assortment of nothing in particular.
Just as you accept the apparent standard of 2 spaces when working within the Ruby community, for consistency's sake I'd hope you would accept the standard of whatever other team you're working with.
That's part of collaboration basics:
* Try to find an acceptable middle ground for the minor things and focus on coding and not politics.
* Don't be a douche.
~2¢
Isobar front end engineer here...
What you're looking at is a document that serves as OUR internal standard. We just made it public because we think people might find it useful. We understand what we do internally may not work for everyone, but that's part of the fun of sharing documents like this. We learn too.
Of course my pages still render on IE, but I don't do any quirks mode stuff, that just causes too much pain.
Oh, well, that's not strictly true, since I have to have two different things in the CSS for rounded corners (webkit vs mozilla), but apart from that I try to keep quirks to a minimum, and IE can go die in a fire for all I care.
http://validator.w3.org/check?uri=http%3A%2F%2Fna.isobar.com...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Code Standards | Isobar</title>
<link rel="stylesheet" href="assets/master.css" />
</head>
<body>
<!--
_^_
/ _)
.-^^^-/ / we like dinosaurs as much as you do.
__/ /
<__.|_|-|_|
-->
I see a couple of problems. First up, they're not indenting. The validator is spitting the dummy because of two things, the first is the spurious whitespace before the doctype tag, the second is the title (which it thinks is missing), but the real problem is with the meta tag which isn't properly closed.But hey, free dinosaur. With hat.
Use CSS sprites generously. They make hover states easy,
improve page load time, and reduce carbon dioxide emissions.
Funny and true.For example, Adobe never really bothered with specifying best practices for Flex, so now every Flex developer's code looks different, and there is a lot of unnecessary trial and error. (Although I like Flex as a framework)
I'm fond of the original because it also includes some great UI design patterns.
(no offense to the article's author.. actually looks really lucid and well written. I just tire of the idea that Best Practices™ exist. They don't.)