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{
"files.exclude": {
"**/.build": true,
"**/.swiftpm": true
},
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"files.trimTrailingWhitespace": true,
"local-history.daysLimit": 7,
"local-history.maxDisplay": 50,
"local-history.exclude": [
"**/.swiftpm/**",
"**/.vscode/**",
"**/.idea/**",
"**/.cache/**",
"**/node_modules/**",
"**/bin/**",
"**/obj/**"
],
"[swift]": {
"editor.defaultFormatter": "vknabel.vscode-apple-swift-format"
},
"makefile.configureOnOpen": false,
"swift.testEnvironmentVariables": {
"SWIFT_DETERMINISTIC_HASHING": "YES"
}
}