-
Notifications
You must be signed in to change notification settings - Fork 1
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
base: master
Are you sure you want to change the base?
Changes from 7 commits
827cf71
957c425
b30f128
2227cd7
5b87b61
8f10be7
5fe7233
702dac2
cace2ea
2c4d9e3
f9ea3dd
ce8a544
44a89c6
0b9c6c9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,34 @@ module.exports = { | |
"semi": [ | ||
"warn", | ||
"always" | ||
], | ||
"key-spacing": [ | ||
"warn" | ||
], | ||
"func-call-spacing": [ | ||
"error", | ||
"never" | ||
], "block-spacing": [ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's put all value declarations on its own line. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
"error" | ||
], | ||
"array-bracket-spacing": [ | ||
"error" | ||
], "keyword-spacing": [ | ||
"error" | ||
], | ||
"semi-spacing": [ | ||
"error" | ||
], "arrow-spacing": [ | ||
"error" | ||
], | ||
"no-tabs": [ | ||
"error" | ||
], | ||
"space-before-function-paren": [ | ||
"error", | ||
"never" | ||
] | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These extra lines should be removed. Can you check to see if there is an ESLint to check for extraneous lines inside of objects such as here? And is it possible for ESLint to check its own configuration file? |
||
|
||
} | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,6 @@ | |
.cert* | ||
.env* | ||
data* | ||
node_modules | ||
node_modules | ||
.DS_Store | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These two lines should not be in the repo's .gitignore file but rather set as global ignores because they are system-specific, not app-specific: https://help.github.com/articles/ignoring-files/#create-a-global-gitignore |
||
.idea/** |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ module.exports = function(grunt) { | |
}, | ||
nodemon: { | ||
dev: { | ||
script: 'app/server.js' | ||
script: 'app/server.js', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This trailing comma should be removed. Is there an ESLint rule to check automatically for trailing commas such as here? |
||
} | ||
}, | ||
symlink: { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's make this error instead of warn so issues don't slip through?