Add .testrepository to ST2 project ignore

Change-Id: I0980e6e7b90e6ae51d09451491d5ac0b5bfb2658
This commit is contained in:
Kiall Mac Innes 2013-11-18 16:02:56 +00:00
parent c81d5f36c2
commit ca795c3a58

View File

@ -1,58 +1,59 @@
{ {
"folders": "folders":
[ [
{ {
"file_exclude_patterns": "file_exclude_patterns":
[ [
"*.pyc", "*.pyc",
"*.pyo", "*.pyo",
"*.exe", "*.exe",
"*.dll", "*.dll",
"*.obj", "*.obj",
"*.o", "*.o",
"*.a", "*.a",
"*.lib", "*.lib",
"*.so", "*.so",
"*.dylib", "*.dylib",
"*.ncb", "*.ncb",
"*.sdf", "*.sdf",
"*.suo", "*.suo",
"*.pdb", "*.pdb",
"*.idb", "*.idb",
".DS_Store", ".DS_Store",
"*.class", "*.class",
"*.psd", "*.psd",
"*.db", "*.db",
".vagrant", ".vagrant",
], ],
"folder_exclude_patterns": "folder_exclude_patterns":
[ [
".svn", ".svn",
".git", ".git",
".hg", ".hg",
"CVS", "CVS",
"*.egg", "*.egg",
"*.egg-info", "*.egg-info",
".tox", ".tox",
"venv", "venv",
".venv", ".venv",
".testrepository",
"doc/build", "doc/build",
"doc/source/api" "doc/source/api"
], ],
"path": "." "path": "."
} }
], ],
"settings": "settings":
{ {
"default_line_ending": "unix", "default_line_ending": "unix",
"detect_indentation": false, "detect_indentation": false,
"ensure_newline_at_eof_on_save": true, "ensure_newline_at_eof_on_save": true,
"rulers": "rulers":
[ [
79 79
], ],
"tab_size": 4, "tab_size": 4,
"translate_tabs_to_spaces": true, "translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true "trim_trailing_white_space_on_save": true
} }
} }