forked from sanger/sequencescape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsequencescape.sublime-project
56 lines (56 loc) · 1.26 KB
/
sequencescape.sublime-project
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
{
"folders": [
{
// Note: Name is intentionally left out of this folder config to
// support the use of multiple directories for the same project
// If name is added, it becomes trickier to tell which version you are
// editing.
"path": ".",
"folder_exclude_patterns": [
".bundle",
"pids",
"work",
"db/archived_migrations",
".yardoc",
"doc",
"coverage",
"node_modules",
"public/public",
"public/packs"
],
"file_exclude_patterns": [".swp", "sequencescape.sublime-workspace"],
"binary_file_patterns": [
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip",
"*.xls"
]
},
{
"name": "Documentation",
"path": "doc"
},
{
"name": "Factories",
"path": "spec/factories"
}
],
// These settings will be applied to anyone working
// on the project. They are intended to set up the accepted
// conventions.
"settings": {
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
}