Use --cache new option with prettier
authorJérôme Benoit <jerome.benoit@sap.com>
Thu, 24 Nov 2022 20:50:35 +0000 (21:50 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Thu, 24 Nov 2022 20:50:35 +0000 (21:50 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
.lintstagedrc.js
package.json

index 91447fa063a13afc4db6e3df71af33d8b8926c74..2d7cf819b6d412ba0b33d7d301a801adca5e7cc0 100644 (file)
@@ -1,8 +1,8 @@
 module.exports = {
   '**/*.{ts,tsx,js,jsx,mjs,cjs}': [
-    'prettier --write',
+    'prettier --cache --write',
     'ts-standard --fix',
     'eslint --cache --fix'
   ],
-  '**/*.{json,md,yml,yaml}': ['prettier --write']
+  '**/*.{json,md,yml,yaml}': ['prettier --cache --write']
 }
index 2115bbe4e467f1f1d8853cf6a94de2b22ffc7bb2..2b482d6dbf546156112fd7267e99a6b5359e1985 100644 (file)
@@ -16,7 +16,7 @@
     "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
     "coverage": "c8 report --reporter=lcov",
     "coverage:html": "c8 report --reporter=html",
-    "format": "prettier . --write; ts-standard . --fix",
+    "format": "prettier . --cache --write; ts-standard . --fix",
     "lint": "eslint . --cache",
     "lint:fix": "eslint . --cache --fix",
     "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",