Exclude generated files from language statistics (#11653) (#11670)

* Update go-enry to v2.5.2
This commit is contained in:
Lauris BH
2020-05-29 12:02:00 +03:00
committed by GitHub
parent 0c40b0badd
commit 42f0769e30
28 changed files with 1402 additions and 1260 deletions

View File

@ -50,11 +50,15 @@ func (repo *Repository) GetLanguageStats(commitID string) (map[string]float32, e
return nil
}
// If content can not be read just do detection by filename
content, _ := readFile(f, fileSizeLimit)
if enry.IsGenerated(f.Name, content) {
return nil
}
// TODO: Use .gitattributes file for linguist overrides
language := analyze.GetCodeLanguageWithCallback(f.Name, func() ([]byte, error) {
return readFile(f, fileSizeLimit)
})
language := analyze.GetCodeLanguage(f.Name, content)
if language == enry.OtherLanguage || language == "" {
return nil
}