Skip to content

Commit a21d3b8

Browse files
committed
Also ignore various build cache folders
These need to be unambiguously ignorable so paths like `target`, `build`, `cache`, etc… should not go here
1 parent 45f5b0e commit a21d3b8

File tree

1 file changed

+6
-0
lines changed
  • packages/tailwindcss-language-service/src/util

1 file changed

+6
-0
lines changed

packages/tailwindcss-language-service/src/util/state.ts

+6
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,12 @@ export function getDefaultTailwindSettings(): Settings {
224224
// Python Virtual Environments
225225
'**/.venv/**',
226226
'**/venv/**',
227+
228+
// Build caches
229+
'**/.next/**',
230+
'**/.turbo/**',
231+
'**/.parcel-cache/**',
232+
'**/__pycache__/**',
227233
],
228234
},
229235
experimental: {

0 commit comments

Comments
 (0)