Non-present languages in my list #3501
-
Describe the bugWhen I preview changes (showing more languages and excluding some more repos) to my language counter on my profile, it's convinced that there are tiny trace amounts of PHP and Pawn, which I have never programmed in before, and C++ which I have no non-forked public repositories of (though if I do a search for C++ files under my user that are not in forks, I get a bunch of assembly-related files (but PHP and Pawn do come up totally empty)). Expected behaviorPHP and Pawn should not be present, and neither should C++, though I think that is on GitHub's end if it comes up with files that aren't C++ in a C++ search? Screenshots / Live demo linkAdditional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey, @Tachytaenius! We use GitHub GraphQL API under the hood to fetch stats data. It show that this repository contains PHP: https://github.com/Tachytaenius/game-boy-n-body. You can personally check the data which we receive from GitHub by running the following query in GraphQL explorer: query userInfo($login: String!) {
user(login: $login) {
# fetch only owner repos & not forks
repositories(ownerAffiliations: OWNER, isFork: false, first: 100) {
nodes {
name
languages(first: 10, orderBy: {field: SIZE, direction: DESC}) {
edges {
size
node {
color
name
}
}
}
}
}
}
}
If it count some other files as PHP by mistake you can contact GitHub support about that. Our team can't do anything, correctness of https://github.com/github-linguist/linguist is not our responsibility. I can only suggest you to try silence these files using configuration of |
Beta Was this translation helpful? Give feedback.
Hey, @Tachytaenius! We use GitHub GraphQL API under the hood to fetch stats data. It show that this repository contains PHP: https://github.com/Tachytaenius/game-boy-n-body. You can personally check the data which we receive from GitHub by running the following query in GraphQL explorer: