Skip to content

Commit

Permalink
feat(eslint.config.js): ignore JSON files in tests
Browse files Browse the repository at this point in the history
This commit updates the eslint configuration to ignore JSON files
located in the tests directory. This is done to prevent linting errors
from being thrown for these files, as they are not meant to adhere to
the project's JavaScript/TypeScript style guidelines.
  • Loading branch information
ryoppippi committed Aug 10, 2024
1 parent bb18093 commit eb4aaab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ryoppippi } from '@ryoppippi/eslint-config';

export default ryoppippi({
svelte: false,
ignores: ['tsdown.config.ts', 'vite.config.ts'],
ignores: ['tsdown.config.ts', 'vite.config.ts', 'tests/**/*.json'],
typescript: {
tsconfigPath: './tsconfig.json',
overrides: {
Expand Down

0 comments on commit eb4aaab

Please sign in to comment.