Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
chore: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Haroenv committed Sep 24, 2019
1 parent 23e84fe commit 051769c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ const config = {
'valid-jsdoc': 'off',
// @TODO: remove once this is in `eslint-config-algolia`
'@typescript-eslint/explicit-member-accessibility': 'off',
// @TODO: re-enable this once the code base is made for it
'@typescript-eslint/consistent-type-assertions': 'off',
// @TODO: re-enable once the rule is properly setup for monorepos
// https://github.com/benmosher/eslint-plugin-import/issues/1103
// https://github.com/benmosher/eslint-plugin-import/issues/1174
Expand Down
2 changes: 1 addition & 1 deletion examples/autocomplete/src/App.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jest.mock('antd/lib/mention', () => {
`<Mention>
${placeholder}
${suggestions.join('\n')}
</Mention>`
</Mention>`;
});

describe('autocomplete recipe', () => {
Expand Down
2 changes: 1 addition & 1 deletion examples/next/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const searchStateToURL = searchState =>

const DEFAULT_PROPS = {
searchClient,
indexName: "instant_search"
indexName: 'instant_search',
};

class Page extends React.Component {
Expand Down

0 comments on commit 051769c

Please sign in to comment.