File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
packages/tailwindcss-language-service/src/util Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,15 @@ export function getDefaultTailwindSettings(): Settings {
210
210
includeLanguages : { } ,
211
211
files : {
212
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
+
213
222
// Version Control
214
223
'**/.git/**' ,
215
224
'**/.hg/**' ,
You can’t perform that action at this time.
0 commit comments