aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/repo_language_stats.go
blob: 74c76b40a444f994efcf72334b85402c9f8cff54 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package git

const (
	fileSizeLimit int64 = 16 * 1024   // 16 KiB
	bigFileSize   int64 = 1024 * 1024 // 1 MiB
)