refactor: cleanup eslint configuration
[e-mobility-charging-stations-simulator.git] / src / utils / FileUtils.ts
index bc8dd07c24725d990ae282056fc5ab8d4243b942..543a2b23c2eda50f157680f15377ee335ec697da 100644 (file)
@@ -1,9 +1,9 @@
-import { type FSWatcher, type WatchListener, readFileSync, watch } from 'node:fs'
+import { type FSWatcher, readFileSync, watch, type WatchListener } from 'node:fs'
 
+import type { FileType, JsonType } from '../types/index.js'
 import { handleFileException } from './ErrorUtils.js'
 import { logger } from './Logger.js'
 import { isNotEmptyString } from './Utils.js'
-import type { FileType, JsonType } from '../types/index.js'
 
 export const watchJsonFile = <T extends JsonType>(
   file: string,