forked from humphd/brackets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguages.json
More file actions
75 lines (66 loc) · 2.27 KB
/
Copy pathlanguages.json
File metadata and controls
75 lines (66 loc) · 2.27 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"unknown": {
"name": "Text",
"mode": ["null", "text/plain"]
},
"css": {
"name": "CSS",
"mode": "css",
"fileExtensions": ["css", "css.erb"],
"blockComment": ["/*", "*/"]
},
"html": {
"name": "HTML",
"mode": ["htmlmixed", "text/x-brackets-html"],
"fileExtensions": ["html", "htm", "shtm", "shtml", "xhtml", "cfm", "cfml", "cfc", "dhtml", "xht", "tpl", "twig", "hbs", "handlebars", "kit", "jsp", "aspx", "ascx", "asp", "master", "cshtml", "vbhtml"],
"blockComment": ["<!--", "-->"]
},
"javascript": {
"name": "JavaScript",
"mode": "javascript",
"fileExtensions": ["js", "jsx", "js.erb", "jsm", "_js"],
"blockComment": ["/*", "*/"],
"lineComment": ["//"]
},
"json": {
"name": "JSON",
"mode": ["javascript", "application/json"],
"fileExtensions": ["json"],
"fileNames": [".jshintrc", ".bowerrc"]
},
"svg": {
"name": "SVG",
"mode": ["xml", "image/svg+xml"],
"fileExtensions": ["svg"],
"blockComment": ["<!--", "-->"]
},
"markdown": {
"name": "Markdown",
"mode": "markdown",
"fileExtensions": ["md", "markdown", "mdown", "mkdn"],
"blockComment": ["<!--", "-->"]
},
"image": {
"name": "Image",
"fileExtensions": ["gif", "png", "jpe", "jpeg", "jpg", "ico", "bmp", "webp"],
"isBinary": true
},
"audio": {
"name": "Audio",
"fileExtensions": ["mp3", "wav", "aif", "aiff", "ogg"],
"isBinary": true
},
"binary": {
"name": "Other Binary",
"fileExtensions": [
"a", "ai", "avi", "bin", "cab", "com", "db", "dll", "dmg",
"doc", "docx", "dot", "dotx", "dsym", "dylib", "egg", "epub", "eot",
"exe", "flv", "gz", "gzip", "htmz", "htmlz", "ipch", "iso", "jar",
"jsz", "lib", "mpeg", "mpg", "mp4", "msi", "node", "o", "obj", "odc",
"odb", "odf", "odg", "odp", "ods", "odt", "otf", "pak", "pdb", "pdf",
"pdi", "ppt", "pptx", "psd", "rar", "sdf", "so", "sqlite", "suo", "svgz",
"swf", "tar", "tif", "tiff", "ttf", "woff", "xls", "xlsx", "zip"
],
"isBinary": true
}
}