Skip to content

[lint] max empty line rule. #3176

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

Merged
merged 1 commit into from
Dec 6, 2016
Merged
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
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"linebreak-style": ["error", "unix"],
"no-trailing-spaces": 2,
"eol-last": 2,
"space-in-parens": ["error", "never"]
"space-in-parens": ["error", "never"],
"no-multiple-empty-lines": 1
}
}
1 change: 0 additions & 1 deletion spec/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,6 @@ function mockFacebook() {
}



// This is polluting, but, it makes it way easier to directly port old tests.
global.Parse = Parse;
global.TestObject = TestObject;
Expand Down
1 change: 0 additions & 1 deletion src/Adapters/Storage/Mongo/MongoSchemaCollection.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ function _mongoSchemaQueryFromNameQuery(name: string, query) {
}



// Returns a type suitable for inserting into mongo _SCHEMA collection.
// Does no validation. That is expected to be done in Parse Server.
function parseFieldTypeToMongoFieldType({ type, targetClass }) {
Expand Down
1 change: 0 additions & 1 deletion src/Routers/IAPValidationRouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ function getFileForProductIdentifier(productIdentifier, req) {
}



export class IAPValidationRouter extends PromiseRouter {

handleRequest(req) {
Expand Down