Last active
August 29, 2015 14:13
-
-
Save joeyfigaro/6f502060d1f107fd1e66 to your computer and use it in GitHub Desktop.
Braindump for Code for RVA's playbook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Style: | |
- trim excess whitespace | |
- two-space indentation; never tabs | |
- never use underscores in CSS | |
- use camel-casing in JS | |
- never abbreviate or shorten; if something is too long, revisit the language used to communicate | |
- never chain classes in your markup (use an abstraction layer instead... sass @extend) | |
- use IDs sparingly, for important parts of your document | |
- always ask if you actually need that container (divs especially) to accomplish what you need | |
- sections, asides, articles do not replace divs | |
Tools: | |
- Sass | |
- Grunt | |
- RequireJS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment