Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
fix: кэширование команд eslint tslint
Browse files Browse the repository at this point in the history
  • Loading branch information
ko22009 committed Oct 23, 2023
1 parent c5b446a commit d948c13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ dist
!.yarn/releases
!.yarn/sdks
!.yarn/versions
stats.html
stats.html
.cache
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"dev": "vite --open",
"build": "vite build",
"serve": "vite preview",
"eslint": "eslint **/*.{ts,tsx}",
"eslint-recursive": "yarn eslint --rule \"{import/no-cycle: error}\"",
"tslint": "tsc --noEmit",
"eslint": "eslint --cache --cache-location .cache/eslint **/*.{ts,tsx}",
"eslint-recursive": "yarn eslint --rule \"{import/no-cycle: error}\" --cache-location .cache/eslint-recursive",
"tslint": "tsc --noEmit --incremental --outDir .cache/ts",
"prettier": "prettier --loglevel warn \"**/*.{ts,tsx}\" --check --cache-location=.yarn/.prettier",
"lint": "concurrently \"yarn eslint\" \"yarn tslint\" \"yarn prettier\" --raw",
"check": "concurrently \"yarn test\" \"yarn eslint-recursive\" \"yarn tslint\" \"yarn prettier\" --raw",
Expand Down

0 comments on commit d948c13

Please sign in to comment.