We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75deffe commit 1a74020Copy full SHA for 1a74020
src/services/duplicates.ts
@@ -10,9 +10,7 @@ import type { Duplicate } from '../config/types.js';
10
* @param filePath - Path to the .env file to scan
11
* @returns An array of objects representing duplicate keys and their counts.
12
*/
13
-export function findDuplicateKeys(
14
- filePath: string,
15
-): Array<Duplicate> {
+export function findDuplicateKeys(filePath: string): Array<Duplicate> {
16
if (!fs.existsSync(filePath)) return [];
17
18
const raw = fs.readFileSync(filePath, 'utf8');
0 commit comments