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

index 699dd0fa4f3b6801cc8dbde41da3b9baa9825641..88f2a228586da764e81832a6febaf8a6925ab9c0 100644 (file)
@@ -1,5 +1,5 @@
 {
-  "{src,test}/**/*.{ts,tsx}": ["prettier --write", "eslint --cache --fix"],
-  "**/*.{json,md,yml,yaml}": ["prettier --write"],
-  "**/*.{js,jsx,mjs,cjs}": ["prettier --write", "eslint --cache --fix"]
+  "{src,test}/**/*.{ts,tsx}": ["prettier --cache --write", "eslint --cache --fix"],
+  "**/*.{json,md,yml,yaml}": ["prettier --cache --write"],
+  "**/*.{js,jsx,mjs,cjs}": ["prettier --cache --write", "eslint --cache --fix"]
 }
index 605c71e8c3128248454fea36abdb2982fb78901d..7efb6b51649d400b6a1ebc96919b973e7a67031b 100644 (file)
@@ -58,7 +58,7 @@
     "build:dev:watch": "npm run rollup -- --environment BUILD:development --watch",
     "lint": "cross-env TIMING=1 eslint --cache --ext .js,.ts src",
     "lint:fix": "cross-env TIMING=1 eslint --cache --fix --ext .js,.ts src",
-    "format": "prettier --write .",
+    "format": "prettier --cache --write .",
     "test": "c8 mocha test/**/*Test.ts",
     "test:debug": "mocha --no-parallel --inspect test/**/*Test.ts",
     "coverage": "c8 report --reporter=lcov",