aboutsummaryrefslogtreecommitdiff
path: root/apps/web/lib/constants.ts
blob: 241a6a1d1e34c06341cc73bf051db0b3f350bab9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
export const LIMITS = {
	page: 100,
	tweet: 1000,
	note: 1000,
};

export const codeLanguageSubset = [
	"python",
	"javascript",
	"java",
	"go",
	"bash",
	"c",
	"cpp",
	"csharp",
	"css",
	"diff",
	"graphql",
	"json",
	"kotlin",
	"less",
	"lua",
	"makefile",
	"markdown",
	"objectivec",
	"perl",
	"php",
	"php-template",
	"plaintext",
	"python-repl",
	"r",
	"ruby",
	"rust",
	"scss",
	"shell",
	"sql",
	"swift",
	"typescript",
	"vbnet",
	"wasm",
	"xml",
	"yaml",
];