-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathlanguages.ts
More file actions
17 lines (17 loc) · 800 Bytes
/
languages.ts
File metadata and controls
17 lines (17 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const LANG_JAVASCRIPT_FRONTEND = "application-javascript-env-frontend";
export const LANG_JAVASCRIPT_BACKEND = "application-javascript-env-backend";
export const LANG_TYPESCRIPT = "application-typescript";
export const LANG_TYPESCRIPT_JSX = "text-typescript-jsx";
export const LANG_JSX = "text-jsx";
export const LANG_JSON = "application-json";
export const LANG_YAML = "text-x-yaml";
export const LANG_GRAPHQL = "text-x-graphql";
export const LANG_HTML = "text-html";
export const LANG_XML = "text-xml";
export const LANG_MARKDOWN = "text-x-markdown";
export const LANG_CSS = "text-css";
export const LANG_LESS = "text-x-less";
export const LANG_SCSS = "text-x-scss";
export const LANG_PYTHON = "text-x-python";
export const LANG_RUST = "text-x-rustsrc";
export const LANG_C = "text-x-csrc";