Skip to content

Commit

Permalink
style: Fix formatting with biome
Browse files Browse the repository at this point in the history
  • Loading branch information
yamadashy committed Feb 22, 2025
1 parent 5f05b55 commit decf31f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config/configLoad.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as fs from 'node:fs/promises';
import path from 'node:path';
import pc from 'picocolors';
import JSON5 from 'json5';
import pc from 'picocolors';
import { RepomixError, rethrowValidationErrorIfZodError } from '../shared/errorHandle.js';
import { logger } from '../shared/logger.js';
import {
Expand Down
4 changes: 2 additions & 2 deletions tests/config/configLoad.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ describe('configLoad', () => {
const result = await loadFileConfig(process.cwd(), 'test-config.json');
expect(result).toEqual({
output: { filePath: 'test-output.txt', style: 'plain' },
ignore: {
ignore: {
useGitignore: true,
customPatterns: ['*.log', '*.tmp', '*.temp']
customPatterns: ['*.log', '*.tmp', '*.temp'],
},
});
});
Expand Down

0 comments on commit decf31f

Please sign in to comment.