forked from tus/tus-node-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtus-node-server.sublime-project
More file actions
39 lines (39 loc) · 957 Bytes
/
tus-node-server.sublime-project
File metadata and controls
39 lines (39 loc) · 957 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
32
33
34
35
36
37
38
39
{
"settings": {
"detect_indentation": true,
"ensure_newline_at_eof_on_save": true,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": false,
"trim_trailing_white_space_on_save": true,
"rulers": [
79
],
},
"SublimeLinter": {
"linters": {
"jshint": {
"@disable": true
},
"eslint": {
"@disable": false
}
},
"paths": {
"osx": ["${project}/node_modules/.bin"]
},
"syntax_map": {
"javascript (babel)": "javascript"
}
},
"folders": [
{
"path": "./",
"folder_exclude_patterns": ["node_modules"],
"file_exclude_patterns": ["*.sublime-workspace"]
}
],
"syntax_override": {
"\\.js$": ["Babel", "JavaScript (Babel)"]
}
}