-
Notifications
You must be signed in to change notification settings - Fork 2
/
dancedeets.sublime-project
100 lines (100 loc) · 1.88 KB
/
dancedeets.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"SublimeLinter":
{
"@python": 2.7,
"linters":
{
"pep8":
{
"ignore": "E501,E261"
},
"pylint":
{
"disable": "C0103,C0111,C0301,R0903",
"paths":
[
"${project_path}/server/lib-local",
"${project_path}/server/lib-both",
"${home}/google-cloud-sdk/platform/google_appengine"
]
}
}
},
"build_systems":
[
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "test",
"shell_cmd": "cd server && ./test.sh",
"working_dir": "${project_path:${folder}}"
},
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "\"python\" -u \"$file\""
}
],
"codeintel_settings":
{
"codeintel_language_settings":
{
"Python":
{
"codeintel_scan_extra_dir":
[
"server/lib-local",
"server/lib-both",
"~/google-cloud-sdk/platform/google_appengine"
]
}
}
},
"folders":
[
{
"folder_exclude_patterns":
[
"download",
"build"
],
"follow_symlinks": true,
"path": "."
}
],
"settings":
{
"PyYapf":
{
"on_save": true,
"yapf_command": "${project_path}/scripts/yapf.sh"
},
"paths": [
"${project_path}/node_modules/.bin",
"${project_path}/node_modules/server/.bin",
],
"anaconda_linting": true,
"anaconda_linting_behaviour": "always",
"pep8": false,
// Too annoying with the flashing on edits:
// "anaconda_linter_phantoms": false,
"extra_paths": [
"${project_path}/server",
"${project_path}/server/lib-local",
"${project_path}/server/lib-both",
"~/google-cloud-sdk/platform/google_appengine",
],
"js_prettier":
{
"auto_format_on_save": true,
"debug": true,
"prettier_options":
{
"singleQuote": true,
"trailingComma": "es5"
}
},
"test_command": "cd server && ./test.sh",
"validate_imports": true
}
}