refactor: refine prettier configuration
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 12 Jan 2024 18:22:38 +0000 (19:22 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 12 Jan 2024 18:22:38 +0000 (19:22 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
.prettierrc.json
README.md

index 80901f792fad9172596b1a8f7c9db1fd3ddb03d5..61b6c17b7812cae845980add36e6af8b989898ab 100644 (file)
@@ -1,6 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/prettierrc",
-  "semi": false,
+  "arrowParens": "avoid",
   "singleQuote": true,
+  "semi": false,
   "trailingComma": "none"
 }
index 8cea8d6279757d3d9cbc75fa715a3341df1171bd..843eab8cc61ca132d9b9441ca516c11dc7659c54 100644 (file)
--- a/README.md
+++ b/README.md
@@ -110,7 +110,7 @@ import { DynamicThreadPool, FixedThreadPool, PoolEvents, availableParallelism }
 
 // a fixed worker_threads pool
 const pool = new FixedThreadPool(availableParallelism(), './yourWorker.js', {
-  errorHandler: (e) => console.error(e),
+  errorHandler: e => console.error(e),
   onlineHandler: () => console.info('worker is online')
 })
 
@@ -119,7 +119,7 @@ pool.emitter?.on(PoolEvents.busy, () => console.info('Pool is busy'))
 
 // or a dynamic worker_threads pool
 const pool = new DynamicThreadPool(Math.floor(availableParallelism() / 2), availableParallelism(), './yourWorker.js', {
-  errorHandler: (e) => console.error(e),
+  errorHandler: e => console.error(e),
   onlineHandler: () => console.info('worker is online')
 })
 
@@ -131,10 +131,10 @@ pool.emitter?.on(PoolEvents.busy, () => console.info('Pool is busy'))
 // so you can easily switch from one to another
 pool
   .execute()
-  .then((res) => {
+  .then(res => {
     console.info(res)
   })
-  .catch((err) => {
+  .catch(err => {
     console.error(err)
   })
 ```