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

Commit

Permalink
feat(widgets): introduce ConfigureRelatedItems as experimental (#2880)
Browse files Browse the repository at this point in the history
  • Loading branch information
francoischalifour committed Dec 17, 2019
1 parent 7481981 commit 923cd43
Show file tree
Hide file tree
Showing 15 changed files with 1,065 additions and 10 deletions.
22 changes: 16 additions & 6 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ const config = {
// https://github.com/benmosher/eslint-plugin-import/issues/1174
'import/no-extraneous-dependencies': 'off',
'@typescript-eslint/explicit-member-accessibility': ['off'],
'@typescript-eslint/camelcase': [
'error',
{ allow: ['^EXPERIMENTAL_', 'free_shipping'] },
],
},
settings: {
react: {
Expand All @@ -35,12 +39,18 @@ const config = {
files: ['*.ts', '*.tsx'],
rules: {
// This rule has issues with the TypeScript parser, but tsc catches
// these sorts of errors anyway.
// See: https://github.com/typescript-eslint/typescript-eslint/issues/342
'no-undef': 'off',
}
}
]
// these sorts of errors anyway.
// See: https://github.com/typescript-eslint/typescript-eslint/issues/342
'no-undef': 'off',
},
},
{
files: ['*.stories.tsx'],
rules: {
'react/prop-types': 'off',
},
},
],
};

module.exports = config;
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,19 +135,19 @@
},
{
"path": "packages/react-instantsearch/dist/umd/Connectors.min.js",
"maxSize": "21 kB"
"maxSize": "21.5 kB"
},
{
"path": "packages/react-instantsearch/dist/umd/Dom.min.js",
"maxSize": "33.25 kB"
"maxSize": "33.5 kB"
},
{
"path": "packages/react-instantsearch-core/dist/umd/ReactInstantSearchCore.min.js",
"maxSize": "24.5 kB"
"maxSize": "25 kB"
},
{
"path": "packages/react-instantsearch-dom/dist/umd/ReactInstantSearchDOM.min.js",
"maxSize": "35.75 kB"
"maxSize": "36 kB"
},
{
"path": "packages/react-instantsearch-dom-maps/dist/umd/ReactInstantSearchDOMMaps.min.js",
Expand Down
Loading

0 comments on commit 923cd43

Please sign in to comment.