Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
fix(src): Fix ESLint configuration issue under /src/ for #231 (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
yajiex authored and vvo committed Jun 20, 2016
1 parent 4950f61 commit 0a60d4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/formatHit.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ export default function formatHit({
value
};
} catch (e) {
/* eslint no-console: 0 */
/* eslint-disable no-console */
console.error('Could not parse object', hit);
console.error(e);
/* eslint-enable no-console */
return {
value: 'Could not parse object'
};
Expand Down
1 change: 0 additions & 1 deletion src/places.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint no-console:0 */
import EventEmitter from 'events';

import algoliasearch from 'algoliasearch/lite';
Expand Down

0 comments on commit 0a60d4c

Please sign in to comment.