We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a21d3b8 commit b13124fCopy full SHA for b13124f
packages/tailwindcss-language-service/src/util/state.ts
@@ -210,6 +210,15 @@ export function getDefaultTailwindSettings(): Settings {
210
includeLanguages: {},
211
files: {
212
exclude: [
213
+ // These paths need to be universally ignorable. This means that we
214
+ // should only consider hidden folders with a commonly understood
215
+ // meaning unless there is a very good reason to do otherwise.
216
+ //
217
+ // This means that things like `build`, `target`, `cache`, etc… are
218
+ // not appropriate to include even though _in many cases_ they might
219
+ // be ignorable. The names are too general and ignoring them could
220
+ // cause us to ignore actual project files.
221
+
222
// Version Control
223
'**/.git/**',
224
'**/.hg/**',
0 commit comments