├── .gitignore ├── .editorconfig └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | bower_components/ 4 | .sass-cache/ 5 | build/ 6 | Gemfile.lock 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending every file 7 | [*] 8 | end_of_line = lf 9 | insert_final_newline = true 10 | indent_style = tab 11 | indent_size = 2 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Style Guide Guide 3 | template: style-guide-guide.hbs 4 | --- 5 | 6 | # Style Guide Guide 7 | 8 | ## node.js 9 | - [KSS-Node](http://kss-node.github.io/kss-node/) 10 | - [Pattern Primer](https://github.com/codetwizzle/Pattern-Primer-on-Node) 11 | - [StyleDocco](https://github.com/jacobrask/styledocco) 12 | - [StyleDown](https://github.com/rstacruz/styledown) 13 | - [Styleguide.js](https://github.com/eightmedia/styleguide.js) 14 | - [Sassdoc](http://sassdoc.com/) 15 | 16 | ## Gulp 17 | - [Assemble](https://github.com/assemble/gulp-assemble) 18 | - [Fabricator](http://fbrctr.github.io/) 19 | - [KSS](https://github.com/PhilJ/gulp-kss) 20 | - [StyleDocco](https://github.com/konitter/gulp-styledocco) 21 | - [LivingStyleGuide](https://github.com/efacilitation/gulp-livingstyleguide) 22 | - [SassDoc](http://sassdoc.com/gulp/) 23 | 24 | ## Grunt 25 | - [Assemble](http://assemble.io/) 26 | - [KSS](https://github.com/indieisaconcept/grunt-styleguide) 27 | - [Pattern Lab](https://github.com/pattern-lab/patternlab-node) 28 | - [Pattern Primer](https://github.com/asciidisco/grunt-patternprimer) 29 | - [Sassdown](https://github.com/nopr/sassdown) 30 | - [SourceJS](http://sourcejs.com/) 31 | - [StyleDocco](https://github.com/indieisaconcept/grunt-styleguide) 32 | - [Style Prototype](https://github.com/team-sass/generator-style-prototype) 33 | - [Styleguide.js](https://github.com/EightMedia/grunt-styleguidejs) 34 | - [SassDoc](http://sassdoc.com/grunt/) 35 | 36 | ## Ruby 37 | - [Hologram](http://trulia.github.io/hologram/) 38 | - [KSS](http://warpspire.com/kss/styleguides/) 39 | - [Pattern Primer](https://github.com/micdijkstra/Pattern-Primer-Ruby) 40 | - [LivingStyleGuide](http://livingstyleguide.org/) 41 | - [Vivus](http://vivus.io) 42 | 43 | ## PHP 44 | - [BareBones](http://barebones.paulrobertlloyd.com/) 45 | - [Pattern Lab](http://patternlab.io/) 46 | - [Pattern Primer](https://github.com/adactio/Pattern-Primer) 47 | - [Style Guide Boilerplate](http://bjankord.github.io/Style-Guide-Boilerplate/) 48 | - [YSS](https://github.com/Yago/YSS) 49 | 50 | ## STYLEGUIDE AS A SERIVCE 51 | - [Frontify](https://frontify.com/) 52 | --------------------------------------------------------------------------------