Skip to content

Commit 1a74020

Browse files
committed
format
1 parent 75deffe commit 1a74020

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/services/duplicates.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ import type { Duplicate } from '../config/types.js';
1010
* @param filePath - Path to the .env file to scan
1111
* @returns An array of objects representing duplicate keys and their counts.
1212
*/
13-
export function findDuplicateKeys(
14-
filePath: string,
15-
): Array<Duplicate> {
13+
export function findDuplicateKeys(filePath: string): Array<Duplicate> {
1614
if (!fs.existsSync(filePath)) return [];
1715

1816
const raw = fs.readFileSync(filePath, 'utf8');

0 commit comments

Comments
 (0)