I have a project with several files. Mostly JavaScript, HTML, CSS but also Solidity. The project core is about Solidity, so I want Git showing as language Solidity.
I created .gitattributes
and add the following:
*.sol linguist-detectable=true
*.html linguist-detectable=false
*.css linguist-detectable=false
*.js linguist-detectable=false
However, now, is appearing blank. Anyone know what am I doing wrong or how I can fix this?