Linting
authoraardizio <alessandroardizio94@gmail.com>
Tue, 16 Feb 2021 11:23:11 +0000 (12:23 +0100)
committeraardizio <alessandroardizio94@gmail.com>
Tue, 16 Feb 2021 11:23:11 +0000 (12:23 +0100)
src/utility-types.ts
src/worker/abstract-worker.ts

index 82dbb4233dab878049059a6334bb1bbcceab2c94..2a2c1993c46b1d378ae23f78138c6e87f0fd9f16 100644 (file)
@@ -55,4 +55,3 @@ export interface MessageValue<
    */
   readonly parent?: MainWorker
 }
-
index bbf8f7065cf32656e2afd5c67b9b840fc0ff8c7b..cb33188e5778a3c9a31cc30f6ae93cb46b33567c 100644 (file)
@@ -3,10 +3,10 @@ import type { Worker } from 'cluster'
 import type { MessagePort } from 'worker_threads'
 import type { MessageValue, KillBehavior } from '../utility-types'
 import type { WorkerOptions } from './worker-options'
-import { killBehaviorEnumeration } from './worker-options'
+// import { killBehaviorEnumeration } from './worker-options'
 
 const defaultMaxInactiveTime = 1000 * 60
-// TODO Shinigami92 to fix this and avoid that SOFT/HARD words are replicated so much times into the project
+// TODO fix this and avoid that SOFT/HARD words are replicated so much times into the project
 const defaultKillBehavior: KillBehavior = 'SOFT'
 
 /**