summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore6
-rw-r--r--sublime-project24
2 files changed, 28 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 0c722fd..4680ca5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,8 @@
*.pyc
*.rdb
-celerybeat-schedule
+__pycache__/
+media/
-newsdiff/media/
+celerybeat-schedule
+sublime-project.sublime-workspace
diff --git a/sublime-project b/sublime-project
new file mode 100644
index 0000000..7d9dc55
--- /dev/null
+++ b/sublime-project
@@ -0,0 +1,24 @@
+{
+ "folders":
+ [
+ {
+ "path": ".",
+ "folder_exclude_patterns": [
+ ".git",
+ ".vagrant",
+ "__pycache__"
+ ],
+ "file_exclude_patterns": [
+ "*.pyc",
+ "*.sublime-workspace"
+ ]
+ }
+ ],
+ "settings":
+ {
+ "tab_size": 4,
+ "translate_tabs_to_spaces": true,
+ "trim_trailing_white_space_on_save": true,
+ "ensure_newline_at_eof_on_save": true
+ }
+}