Skip to content

Commit

Permalink
chore: disable cache for turbo lint task
Browse files Browse the repository at this point in the history
  • Loading branch information
j4k0xb committed Jan 3, 2024
1 parent 2696a63 commit 3aeada5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"typescript.preferences.preferTypeOnlyAutoImports": true
}
8 changes: 6 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@
"dist/**"
]
},
"lint": {},
"lint:fix": {},
"lint": {
"cache": false
},
"lint:fix": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
Expand Down

0 comments on commit 3aeada5

Please sign in to comment.