Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mdjastrzebski committed Nov 25, 2022
1 parent 6dbd540 commit f47dd59
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion examples/native/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ module.exports = {
'import/no-unresolved': 'off',
'jest/expect-expect': [
'error',
{ assertFunctionNames: ['expect', 'measurePerformance'] },
{
assertFunctionNames: [
'expect',
'measurePerformance',
'measureExecution',
],
},
],
},
};
2 changes: 1 addition & 1 deletion examples/web-vite/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ module.exports = {
'import/no-extraneous-dependencies': 'off',
'import/no-unresolved': 'off',
'react/react-in-jsx-scope': 'off',
'jest/expect-expect': ['error', { assertFunctionNames: ['expect', 'measurePerformance', 'measureExecution'] }],
'jest/expect-expect': ['error', { assertFunctionNames: ['expect', 'measurePerformance'] }],
},
};

0 comments on commit f47dd59

Please sign in to comment.