Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolved issues #56 and #57: added sourceContentType and pulling FB photos #80

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
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
56 changes: 56 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,62 @@ module.exports = {
"semi": [
"warn",
"always"
],
"key-spacing": [
"error"
],
"func-call-spacing": [
"error",
"never"
],
"block-spacing": [
"error"
],
"array-bracket-spacing": [
"error"
],
"keyword-spacing": [
"error"
],
"semi-spacing": [
"error"
],
"arrow-spacing": [
"error"
],
"no-tabs": [
"error"
],
"space-before-function-paren": [
"error",
"never"
],
"no-multiple-empty-lines": [
"error",
{ "max": 1 }
],
"padded-blocks": [
"error",
"never"
],
"padding-line-between-statements": [
"error",
{
"blankLine": "always",
"prev": "*",
"next": "if"
}
],
"sort-imports": [
"error"
],
"comma-dangle": [
"error",
"never"
],
"object-curly-spacing": [
"error",
"always"
]
}
};
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
.cert*
.env*
data*
node_modules
node_modules
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = function(grunt) {
jsdoc: {
build: {
options: {
configure : '.jsdoc.json'
configure: '.jsdoc.json'
}
}
},
Expand Down
Binary file added app/.DS_Store
Binary file not shown.
Loading