Fix lint-staged configuration, take 2
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 9 Oct 2022 19:19:34 +0000 (21:19 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 9 Oct 2022 19:19:34 +0000 (21:19 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
.lintstagedrc.js
README.md

index 9b4543c077cb18680ca5df57bdfde47a902c0b66..433ce7f0c53fd6067b09fb3c6e8c4bf92e08b28b 100644 (file)
@@ -1,6 +1,7 @@
 module.exports = {
   '**/*.{js,mjs,ts}': ['eslint --cache --fix'],
   '**/*.{json,md,yml}': [
-    'prettier --loglevel silent --write, prettierx --write'
+    'prettier --loglevel silent --write',
+    'prettierx --write'
   ]
 }
index 2db54d26d4742ea0e687fad888e3972ccd49f8c7..f0f8fc0466d4fe6ee04a672cd16c1f0f16bcc231 100644 (file)
--- a/README.md
+++ b/README.md
@@ -99,7 +99,7 @@ You can implement a worker-threads worker in a simple way by extending the class
 'use strict'
 const { ThreadWorker } = require('poolifier')
 
-function yourFunction(data) {
+function yourFunction (data) {
   // this will be executed in the worker thread,
   // the data will be received by using the execute method
   return { ok: 1 }