Files
discourse/discourse.sublime-project
T

33 lines
783 B
Plaintext
Raw Normal View History

2013-02-05 14:16:51 -05:00
{
"folders":
2013-02-26 23:12:31 +01:00
[
{
"path": "app",
"folder_exclude_patterns": ["external", "external_development", "external_production", "images", "imported", "fonts", "defer"],
2013-02-28 14:31:39 -05:00
"file_exclude_patterns": ["i18n.js"]
2013-02-26 23:12:31 +01:00
},
{ "path": "config" },
2013-02-05 14:16:51 -05:00
{
2013-02-26 23:12:31 +01:00
"path": "db",
"file_exclude_patterns": ["*.sqlite3"]
},
{ "path": "lib" },
{ "path": "plugins" },
2013-02-26 23:12:31 +01:00
{ "path": "script" },
2013-06-13 15:08:42 -04:00
{ "path": "spec" },
2015-08-25 17:35:49 +02:00
{ "path": "vendor" },
{ "path": "test",
"folder_exclude_patterns": ["fixtures"]
}
2013-02-26 23:12:31 +01:00
],
"settings":
{
// indentation
"tab_size": 2,
"translate_tabs_to_spaces": true,
2013-03-01 15:23:10 +01:00
"trim_trailing_white_space_on_save": true,
// ensure line endings is linux style (even when on Windows)
"default_line_ending": "LF"
2013-02-26 23:12:31 +01:00
}
2013-02-28 14:31:39 -05:00
}