sass-site/source/styleguide/code.html.haml

46 lines
1.6 KiB
Plaintext
Raw Normal View History

2013-10-09 12:30:53 +02:00
---
title: Code Style Guide
---
%p.introduction
If you would like to contribute to this website's code, please adhere to the
following code style guidelines.
:markdown
- Please try to keep lines at a maximum of 78 characters.
- Favor clarity over brevity in naming anything.
2013-10-14 21:52:40 +02:00
- Pages end with `.html.haml`, `.html.erb`, `.html.md`, etc.
- Partials and layouts end with `.haml`, `.md`, `.erb`, etc.
2013-10-09 12:30:53 +02:00
## Markup
For the most part, we use [Haml](http://haml.info/) and
[Markdown](http://daringfireball.net/projects/markdown/) for writing markup.
If you need to use regular HTML anywhere, write HTML5, but favor a strict
XHTML style:
2013-10-13 01:26:11 +02:00
- Use well-formed markup; elements are nested properly and do not overlap.
- Write elements and attributes in lowercase.
- Quote all attributes.
- Self-close empty elements with a space before the trailing slash:
(`<br />`)
2013-10-09 12:30:53 +02:00
## Style
2015-04-02 01:51:37 +02:00
This website uses Sass (duh) in the newer SCSS syntax. We also use the
2013-10-09 12:30:53 +02:00
following extensions:
- [Compass](http://compass-style.org/)
- [Susy](http://susy.oddbird.net/)
2013-10-16 01:40:35 +02:00
- [Breakpoint](http://breakpoint-sass.com/)
2013-10-09 12:30:53 +02:00
Make sure you're using the mixins and such that they have to offer before
rewriting something, unless you can justify otherwise.
2013-10-13 01:26:11 +02:00
- Use hyphenated class names (no camelCase or snake_case).
2013-10-14 21:52:40 +02:00
- For naming, use the general-to-specific approach. See
2013-10-13 01:26:11 +02:00
[this article](http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-name-your-sass-variables-modularly/)
for more details.
- Avoid nesting too deep.
- Write comma-delimited selectors on separate lines.