code.gitea.io/gitea@v1.19.3/modules/git/repo_language_stats.go (about) 1 // Copyright 2020 The Gitea Authors. All rights reserved. 2 // SPDX-License-Identifier: MIT 3 4 package git 5 6 const ( 7 fileSizeLimit int64 = 16 * 1024 // 16 KiB 8 bigFileSize int64 = 1024 * 1024 // 1 MiB 9 )