refactor: cleanup eslint configuration
[e-mobility-charging-stations-simulator.git] / src / performance / storage / JsonFileStorage.ts
index a69edd69ace56acf62fbd3992cb401e901fc5c3b..648b9c62f292474b0b6dcd3d871af4c0849fa36d 100644 (file)
@@ -3,15 +3,15 @@
 import { closeSync, existsSync, mkdirSync, openSync, writeSync } from 'node:fs'
 import { dirname } from 'node:path'
 
-import { Storage } from './Storage.js'
 import { BaseError } from '../../exception/index.js'
 import { FileType, type Statistics } from '../../types/index.js'
 import {
   AsyncLock,
   AsyncLockType,
-  JSONStringifyWithMapSupport,
-  handleFileException
+  handleFileException,
+  JSONStringifyWithMapSupport
 } from '../../utils/index.js'
+import { Storage } from './Storage.js'
 
 export class JsonFileStorage extends Storage {
   private fd?: number