Skip to content

Commit

Permalink
tweaked vscode support
Browse files Browse the repository at this point in the history
  • Loading branch information
samdeane committed Aug 29, 2024
1 parent 5873296 commit aeff3a8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .swift-format
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"lineBreakBeforeControlFlowKeywords": false,
"lineBreakBeforeEachArgument": false,
"lineBreakBeforeEachGenericRequirement": false,
"lineLength": 100,
"lineLength": 200,
"maximumBlankLines": 1,
"multiElementCollectionTrailingCommas": true,
"noAssignmentInExpressions": {
Expand Down Expand Up @@ -64,6 +64,6 @@
"ValidateDocumentationComments": false
},
"spacesAroundRangeFormationOperators": false,
"tabWidth": 8,
"tabWidth": 2,
"version": 1
}
4 changes: 3 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"sourceLanguages": [
"swift"
],
"args": ["--version"],
"args": [
"--version"
],
"cwd": "${workspaceFolder:ReleaseTools}",
"name": "Debug rt",
"program": "${workspaceFolder:ReleaseTools}/.build/debug/rt",
Expand Down
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"lldb.library": "/Applications/Xcode-16.1.0-Beta.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB",
"lldb.launch.expressions": "native",
"swift.debugger.useDebugAdapterFromToolchain": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
}{
"lldb.library": "/Applications/Xcode-15.4.0.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB",
"lldb.launch.expressions": "native"
}

0 comments on commit aeff3a8

Please sign in to comment.