Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Airbnb CSS / Sass Styleguide
# GoGuardian CSS / Sass Styleguide

*A mostly reasonable approach to CSS and Sass*

Expand Down
24 changes: 24 additions & 0 deletions linters/.csscomb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"remove-empty-rulesets": true,
"always-semicolon": true,
"color-case": "lower",
"block-indent": " ",
"color-shorthand": false,
"element-case": "lower",
"eof-newline": true,
"leading-zero": false,
"quotes": "double",
"space-before-colon": "",
"space-after-colon": " ",
"space-before-combinator": " ",
"space-after-combinator": " ",
"space-between-declarations": "\n",
"space-before-opening-brace": " ",
"space-after-opening-brace": "\n",
"space-after-selector-delimiter": "\n",
"space-before-selector-delimiter": "",
"space-before-closing-brace": "\n",
"strip-spaces": true,
"tab-size": true,
"unitless-zero": true
}
File renamed without changes.
5 changes: 5 additions & 0 deletions linters/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Linting & Cleanup

To keep consistent styles within our codebase, use CSS Comb. For Atom users
install the [css-comb](https://atom.io/packages/css-comb) atom plugin and
enable `On Save`.