-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 9a7d78b
Showing
76 changed files
with
7,366 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"directory": "src/assets/_components", | ||
"json": "bower.json" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"important": false, | ||
"adjoining-classes": false, | ||
"known-properties": true, | ||
"box-sizing": false, | ||
"box-model": false, | ||
"overqualified-elements": false, | ||
"display-property-grouping": true, | ||
"bulletproof-font-face": false, | ||
"compatible-vendor-prefixes": false, | ||
"regex-selectors": false, | ||
"errors": false, | ||
"duplicate-background-images": false, | ||
"duplicate-properties": false, | ||
"empty-rules": false, | ||
"selector-max-approaching": false, | ||
"gradients": false, | ||
"fallback-colors": true, | ||
"font-sizes": false, | ||
"font-faces": false, | ||
"floats": false, | ||
"star-property-hack": false, | ||
"outline-none": false, | ||
"import": true, | ||
"ids": true, | ||
"underscore-property-hack": false, | ||
"rules-count": false, | ||
"qualified-headings": false, | ||
"selector-max": false, | ||
"shorthand": true, | ||
"text-indent": false, | ||
"unique-headings": false, | ||
"universal-selector": false, | ||
"unqualified-attributes": true, | ||
"vendor-prefix": false, | ||
"zero-units": true | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Ignore hidden folders | ||
# This takes care of .tmp, .sass-cache, and many others | ||
.*/ | ||
|
||
# OSX | ||
._* | ||
.AppleDouble | ||
.DS_Store | ||
.localized | ||
.LSOverride | ||
.Spotlight-V100 | ||
.Trashes | ||
Icon | ||
|
||
# Windows | ||
Desktop.ini | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# Linux | ||
*~ | ||
|
||
# Tags | ||
# Ignore tags created by etags and ctags | ||
TAGS | ||
tags | ||
|
||
# Vim | ||
.*.sw[a-z] | ||
.netrwhist | ||
*.un~ | ||
Session.vim | ||
|
||
# Sublime | ||
*.sublime-project | ||
*.sublime-workspace | ||
*.sublime-projectcompletions | ||
|
||
# TextMate | ||
*.tmproj | ||
*.tmproject | ||
tmtags | ||
|
||
# NetBeans | ||
nbproject/* | ||
|
||
# Always-ignore files and folders | ||
*.diff | ||
*.err | ||
*.log | ||
*.orig | ||
*.rej | ||
*.swn | ||
*.swo | ||
*.swp | ||
*.lock | ||
._* | ||
*~ | ||
|
||
# Ignore packages | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# Packages | ||
node_modules/* | ||
src/assets/_components/* | ||
|
||
# Ghostium | ||
build |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"esnext": true, | ||
"bitwise": false, | ||
"curly": false, | ||
"eqeqeq": true, | ||
"eqnull": true, | ||
"immed": true, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "single", | ||
"undef": true, | ||
"strict": false, | ||
"trailing": true, | ||
"smarttabs": true, | ||
"globals": { | ||
"$": false, | ||
"jQuery": false, | ||
"Modernizr": false | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rvm use 2.0.0 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
language: node_js | ||
node_js: | ||
- '0.10' | ||
rvm: | ||
- '2.0.0' | ||
before_install: | ||
- 'npm install -g bower' | ||
- 'gem install bundler' | ||
before_script: | ||
- 'npm install -g grunt-cli' |
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Contributing | ||
|
||
**DON'T CHANGE BUILDED FILES ON ROOT DIRECTORY** | ||
|
||
1. Fork it! | ||
2. Create your feature branch: `git checkout -b my-new-feature` | ||
3. Commit your changes: `git commit -m 'Add some feature'`s | ||
4. Push to the branch: `git push origin my-new-feature` | ||
5. Submit a pull request :D | ||
|
||
Changelog is generated with git metadata using [these](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/) conventions. | ||
|
||
English is the universal language nowadays, so please don't create or comment on issues using another language. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
source 'http://rubygems.org' | ||
|
||
gem 'sass', '>=3.2.11' | ||
gem 'csscss', '~>1.3.2' |
Oops, something went wrong.