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']
}
"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",