Skip to content

Commit

Permalink
fix: manual updates to react/vite migration
Browse files Browse the repository at this point in the history
  • Loading branch information
kabaros committed Oct 22, 2024
1 parent eb8115b commit 445b282
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ module.exports = {
},
overrides: [
{
files: ['*.test.js', '**/__tests__/*.js'],
files: [
'*.test.js',
'**/__tests__/*.js',
'*.test.jsx',
'**/__tests__/*.jsx',
],
rules: {
'i18next/no-literal-string': 'off',
'react/prop-types': 'off',
Expand All @@ -62,7 +67,7 @@ module.exports = {
},
},
{
files: ['cypress/**/*.js'],
files: ['cypress/**/*.js', 'cypress/**/*.jsx'],
rules: {
'import/no-unassigned-import': 'off',
'import/no-unused-modules': 'off',
Expand Down

0 comments on commit 445b282

Please sign in to comment.