This repository was archived by the owner on Apr 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
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
Nick Chapman
committed
Dec 4, 2013
1 parent
510974c
commit 5c49dfa
Showing
19 changed files
with
10,180 additions
and
25 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,25 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
|
||
# Change these settings to your own preference | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# We recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.coffee] | ||
indent_style = space | ||
indent_size = 2 |
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 |
---|---|---|
@@ -1,25 +1,42 @@ | ||
# Created by http://gitignore.io | ||
|
||
### Node ### | ||
lib-cov | ||
*.seed | ||
*.log | ||
*.csv | ||
*.dat | ||
*.out | ||
*.pid | ||
*.gz | ||
|
||
pids | ||
logs | ||
results | ||
|
||
npm-debug.log | ||
node_modules | ||
|
||
### Bower ### | ||
app/bower_components | ||
|
||
|
||
### Linux ### | ||
.* | ||
!.gitignore | ||
!.git* | ||
!.editorconfig | ||
!.jshintrc | ||
!.npmignore | ||
!.travis.yml | ||
*~ | ||
*.pyc | ||
\#*\# | ||
.\#* | ||
*.swp | ||
/node_modules | ||
/var | ||
/rpmbuild | ||
/npm-debug.log | ||
/resources/static/build | ||
/resources/static/production | ||
/resources/static/i18n | ||
/resources/static/common/js/lib/bidbundle.js | ||
/resources/static/common/js/lib/gobbledygook.js | ||
/resources/static/dialog/views/site | ||
.DS_Store | ||
Thumbs.db | ||
/locale | ||
/resources/email_templates/email-test.html | ||
/automation-tests/node_modules | ||
/automation-tests/results | ||
/automation-tests/*.jar | ||
local.json | ||
/server/var | ||
sauce_connect.log* | ||
|
||
|
||
### SASS ### | ||
### SASS Ignores - "Sassy CSS" http://sass-lang.com/ | ||
*.sass-cache | ||
|
||
|
||
### Yeoman ### | ||
dist | ||
test/temp |
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,22 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"esnext": true, | ||
"bitwise": true, | ||
"camelcase": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"indent": 4, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "single", | ||
"regexp": true, | ||
"undef": true, | ||
"unused": true, | ||
"strict": true, | ||
"trailing": true, | ||
"smarttabs": true, | ||
"jquery": true | ||
} |
Oops, something went wrong.