chore: add lint cache (#1917)

This commit is contained in:
Simon He 2023-04-14 04:30:18 +08:00 committed by GitHub
parent 42756045bb
commit 32b206a137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"arrowParens": "avoid"
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"arrowParens": "avoid"
}

View File

@ -22,7 +22,7 @@
"start": "yarn workspace @affine/web start",
"start:storybook": "yarn exec serve packages/component/storybook-static -l 6006",
"start:e2e": "yar dlx run-p start start:storybook",
"lint": "eslint . --ext .js,mjs,.ts,.tsx",
"lint": "eslint . --ext .js,mjs,.ts,.tsx --cache",
"lint:fix": "yarn lint --fix",
"test": "playwright test",
"test:coverage": "COVERAGE=true yarn test --forbid-only",
@ -33,7 +33,7 @@
"notify": "node scripts/notify.mjs"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*": "prettier --write --ignore-unknown --cache",
"*.{ts,tsx,mjs,js,jsx}": "eslint --cache --fix"
},
"devDependencies": {