Skip to content

Commit

Permalink
Remove support for __tests__
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamahl19 committed Feb 1, 2024
1 parent 4655a21 commit 29ea6b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ module.exports = {
},
},
{
files: ['**/__tests__/**/*', '**/*.{spec,test}.*'],
files: ['**/*.{spec,test}.*'],
extends: [
'plugin:vitest/recommended',
'plugin:testing-library/react',
Expand Down
2 changes: 1 addition & 1 deletion i18next-parser.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { type UserConfig } from 'i18next-parser';

export default {
locales: ['en'],
input: ['src/**/*.{ts,tsx}', '!src/**/*.{spec,test}.{ts,tsx}', '!src/**/__tests__/**/*'],
input: ['src/**/*.{ts,tsx}', '!src/**/*.{spec,test}.{ts,tsx}'],
output: 'src/i18n/$LOCALE/$NAMESPACE.json',
sort: true,
verbose: true,
Expand Down

0 comments on commit 29ea6b6

Please sign in to comment.