(.ts) TypeScript files are not correctly vendored #5323
-
Hi, thanks for developing this wonderful tool! Problem descriptionThe dominant language turns into URL of the affected repository:We are pretty sure that several days ago, the dominant language of our repo was still Will appreciate any help from you, Thanks! cc @mloning |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Almost. Your override isn't recursive so it's only marking the files within As per the
From the
All of your Typescript files are in sub-directories of that directory so you need to make your override recursive by using
That repo doesn't have any overrides so you're seeing the default behaviour. That repo has more bytes of code of TypeScript than Python. In this case, you have ~40MB of TypeScript (thanks to the two massive files in |
Beta Was this translation helpful? Give feedback.
Almost. Your override isn't recursive so it's only marking the files within
sktime/datasets/data/
itself as vendored.As per the
.gitattributes
documentation:From the
.gitignore
docs: