mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-02 21:50:10 +00:00
43 lines
503 B
TypeScript
43 lines
503 B
TypeScript
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",
|
|
];
|