-
Notifications
You must be signed in to change notification settings - Fork 35
/
project.code-workspace
154 lines (154 loc) · 4.26 KB
/
project.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"folders": [
{
"name": "[Repository]",
"path": "."
}
],
"settings": {
"breadcrumbs.enabled": true,
"editor.autoIndent": "full",
"editor.bracketPairColorization.enabled": true,
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.renderWhitespace": "all",
"editor.rulers": [
120
],
"editor.suggestSelection": "recentlyUsedByPrefix",
"explorer.autoReveal": true,
"explorer.sortOrder": "type",
"extensions.ignoreRecommendations": true,
"files.associations": {
"Jenkinsfile*": "jenkinsfile"
},
"files.autoSave": "onFocusChange",
"files.eol": "\n",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.git": true,
"**/log": true,
"**/node_modules": true,
"**/target": true,
"**/tmp": true
},
"java.completion.enabled": true,
"java.configuration.updateBuildConfiguration": "automatic",
"java.format.enabled": false,
"php.suggest.basic": false,
"python.formatting.blackArgs": [
"--line-length",
"120"
],
"python.formatting.provider": "black",
"python.languageServer": "Pylance",
"python.linting.flake8Args": [
"--max-line-length=120"
],
"python.linting.flake8Enabled": true,
"python.linting.mypyArgs": [],
"python.linting.mypyEnabled": true,
"python.linting.pylintArgs": [],
"python.linting.pylintEnabled": true,
"python.terminal.activateEnvironment": false,
"search.exclude": {
"**/.git": true,
"**/log": true,
"**/node_modules": true,
"**/target": true,
"**/tmp": true
},
"terminal.integrated.fontFamily": "Hack Nerd Font",
"window.title": "${activeEditorMedium}${separator}${rootName}${separator}${rootPath}",
"window.zoomLevel": 0,
"workbench.colorTheme": "Noctis Azureus",
"workbench.editor.enablePreview": false,
"workbench.tree.indent": 24,
"[dockerfile]": {
"editor.formatOnSave": false,
"editor.insertSpaces": true,
"editor.tabSize": 4
},
"[groovy]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[java]": {
"editor.tabSize": 2,
"editor.insertSpaces": true
},
"[javascript]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[javascriptreact]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[json]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[python]": {
"editor.tabSize": 4,
"editor.insertSpaces": true
},
"[terraform]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[typescript]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[typescriptreact]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[makefile]": {
"editor.insertSpaces": false,
"editor.tabSize": 2
},
"[markdown]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[xml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#1accff",
"activityBar.activeBorder": "#df00ad",
"activityBar.background": "#1accff",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#df00ad",
"activityBarBadge.foreground": "#e7e7e7",
"sash.hoverBorder": "#1accff",
"statusBar.background": "#00b3e6",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#008bb3",
"statusBarItem.remoteBackground": "#00b3e6",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#00b3e6",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#00b3e699",
"titleBar.inactiveForeground": "#15202b99",
"commandCenter.border": "#15202b99"
},
"peacock.color": "#00b3e6"
}
}