0

https://github.com/owdx1/Spring-Boot-2.0-BIL344

My repo doesn't show up the languages I used in the code. Am I doing something wrong with my file organization? I've tried to apply the solutions from another questions, yet it didn't help.

Thanks :)

  • which language didn't show your GitHub? – Swapnil May 21 '23 at 08:18
  • I've used spring boot so it's the java language in the application. When the repository is pinned or when it's clicked on, there usually a notation bar that displays the languages that are used the the application. Yet the github doesn't determine the ones I used in this application. I've tried to come up with a solution by looking the similar questions but it didnt work out for me. I am not using github actively, so I couldn't name the issue here. – Ogulcan Bozkurt May 21 '23 at 09:39
  • which languages are used with Spring boot project..? if you use Java's framework github shows only Java you have used. if you are using java spring boot with jsp then eclipse only shows you have used Java. – Swapnil May 23 '23 at 16:01

1 Answers1

0

Your repository structure is:

demo/
.gitattributes
.gitignore

The first line of your .gitattributes file is:

demo linguist-vendored

Per the documentation, that means "please don't count demo in the language statistics". All your code is therefore excluded from statistics.

pchaigno
  • 11,313
  • 2
  • 29
  • 54