Skip to content

Commit

Permalink
Merge pull request #1 from asilluron/develop
Browse files Browse the repository at this point in the history
Initial alpha release - preview.
  • Loading branch information
asilluron committed Oct 1, 2015
2 parents 1b81105 + 0d40859 commit e734a8c
Show file tree
Hide file tree
Showing 24 changed files with 1,083 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
24 changes: 24 additions & 0 deletions .esformatter
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"preset": "default",
"indent": {
"value": " ",
"FunctionExpression": 1,
"ArrayExpression": 1,
"ObjectExpression": 1
},
"whiteSpace": {
"after": {
"FunctionReservedWord": 1
}
},
"plugins": [
"esformatter-quotes",
"esformatter-braces",
"esformatter-semicolons",
"esformatter-dot-notation"
],
"quotes": {
"type": "single",
"avoidEscape": true
}
}
19 changes: 19 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
parser: babel-eslint
rules:
strict:
- 0
quotes:
- 2
- single
linebreak-style:
- 2
- unix
semi:
- 2
- always
no-underscore-dangle: 0
env:
es6: true
browser: true
globals:
require: true
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@ coverage
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
build

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

# nwjs builder
cache

1 change: 1 addition & 0 deletions .jsfmtrc
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# gif-cake
Super fast gifs powered by Giphy. Filter lists, favorites and more.

# Development
It is recommended that you use Node ^v4.1.0 when building the project.

* ``` gulp ```
Loading

0 comments on commit e734a8c

Please sign in to comment.