Skip to content

Commit

Permalink
fix(lint): Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotttf committed Dec 8, 2016
1 parent 5c9057e commit 4bf217b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions bin/jsonapi-validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ catch (e) {
console.error(` ${message.message}.`);
console.error(` schemaPath: ${message.schemaPath}`);
Object.keys(message.params).forEach(param => console.error(
` ${param}: ${message.params[param]}`
));
` ${param}: ${message.params[param]}`));
});
}
process.exit(1);
Expand Down
3 changes: 1 addition & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ module.exports = {
test.equal(
e.errors[0].message,
'should have required property \'data\'',
'Unexpected error reported.'
);
'Unexpected error reported.');
}

test.done();
Expand Down

0 comments on commit 4bf217b

Please sign in to comment.