forked from swevans/unmute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunmute.code-workspace
124 lines (110 loc) · 4.15 KB
/
unmute.code-workspace
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"folders": [
{
"name": "unmute",
"path": "."
}
],
"settings": {
// Project Settings
"window.title": "${dirty}${rootName}: ${activeEditorShort}${separator}${separator}${folderPath}",
// General IDE Settings
"editor.insertSpaces": false,
"editor.wordWrapColumn": 9000,
"editor.wordWrap": "off",
"editor.renderWhitespace": "all",
"editor.fontFamily": "Consolas",
"editor.fontSize": 14,
"editor.folding": true,
"editor.autoIndent": "advanced",
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"editor.formatOnType": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.colorDecorators": false,
"editor.foldingHighlight": false,
// Other Language Settings
"json.format.enable": false,
"html.format.enable": false,
// Javascript Settings
"javascript.preferences.quoteStyle": "double",
"javascript.suggest.names": false,
"javascript.format.enable": false,
"javascript.validate.enable": true,
// Typescript Settings
"typescript.preferences.quoteStyle": "double",
"typescript.suggest.autoImports": false,
"typescript.tsc.autoDetect": "off",
"typescript.format.enable": false,
"typescript.tsdk": "node_modules\\typescript\\lib", // Always use local typescript
"typescript.format.insertSpaceAfterCommaDelimiter": true,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"typescript.format.insertSpaceAfterSemicolonInForStatements": true,
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": false,
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"typescript.format.insertSpaceAfterConstructor": false,
"typescript.format.insertSpaceAfterTypeAssertion": false,
"[markdown]": {
"editor.wordWrap": "off"
},
// TSLint Settings
"tslint.alwaysShowRuleFailuresAsWarnings": false,
//"tslint.configFile": "tslint.json", // Don't specify so it uses the nearest tslint file
"tslint.jsEnable": false,
"tslint.suppressWhileTypeErrorsPresent": false,
"tslint.ignoreDefinitionFiles": true,
"tslint.exclude": ["**/bin/*.*"],
// CSS Settings
"css.lint.propertyIgnoredDueToDisplay": "ignore",
"css.lint.emptyRules": "ignore",
// Terminal Settings
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cwd": "./",
"terminal.integrated.fontSize": 12,
// NPM Settings
"npm.autoDetect": "off",
// Reference Settings
"references.preferredLocation": "view", // Show in side bar
// Explorer Settings
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/package-lock.json": true
},
// Watcher Settings
// Configure glob patterns of file paths to exclude from file watching.
// Patterns must match on absolute paths (i.e. prefix with ** or the full path to match properly).
// Changing this setting requires a restart. When you experience Code consuming lots of cpu time on startup,
// you can exclude large folders to reduce the initial load.
"files.watcherExclude": {
"**/.git/**/*.*": true,
"**/node_modules/**/*.*": true,
"bin/**/*.*": true,
".obj/**/*.*": true
},
// File Associations
"files.associations": {
"tslint.json": "jsonc", // Forces tslint.json to be parsed as a jsonc
"tsconfig.json": "jsonc",
"*.tsconfig.json": "jsonc",
"tsconfig.*.json": "jsonc",
"project.json": "jsonc",
"*.ttf.json": "jsonc",
"*.tsbuildinfo": "jsonc"
},
"typescript.surveys.enabled": false
}
}