forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsublime-project
More file actions
31 lines (31 loc) · 759 Bytes
/
sublime-project
File metadata and controls
31 lines (31 loc) · 759 Bytes
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
{
"folders":
[
{
"path": "app",
"folder_exclude_patterns": ["external", "external_development", "external_production", "images", "imported", "fonts", "defer"],
"file_exclude_patterns": ["i18n.js"]
},
{ "path": "config" },
{
"path": "db",
"file_exclude_patterns": ["*.sqlite3"]
},
{ "path": "lib" },
{ "path": "script" },
{ "path": "cookbooks" },
{ "path": "spec" },
{ "path": "test",
"folder_exclude_patterns": ["fixtures"]
}
],
"settings":
{
// indentation
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
// ensure line endings is linux style (even when on Windows)
"default_line_ending": "LF"
}
}