Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
example settings and recommended extensions added
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmackaij committed Feb 12, 2024
1 parent a5fe1ea commit 98333eb
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ report.html
tests/logs

# IDE config
.vscode
.vscode/launch.json
.vscode/settings.json

# PowerShell utility scripts
_*.ps1
33 changes: 33 additions & 0 deletions .vscode/example.launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "RobotCode: Default",
"type": "robotcode",
"request": "launch",
"purpose": "default",
"presentation": {
"hidden": true
},
"attachPython": true,
"pythonConfiguration": "RobotCode: Python",
"args": [
"--variable=ROOT:${workspaceFolder}",
"--outputdir=${workspaceFolder}/tests/logs",
"--loglevel=TRACE:INFO"
]
},
{
"name": "RobotCode: Python",
"type": "python",
"request": "attach",
"presentation": {
"hidden": true
},
"justMyCode": false
}
]
}
5 changes: 5 additions & 0 deletions .vscode/example.settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"robotcode.robot.variables": {
"ROOT": "/workspaces/robotframework-openapidriver"
}
}
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"ms-vscode-remote.remote-containers",
"ms-python.python",
"ms-python.vscode-pylance",
"charliermarsh.ruff",
"d-biehl.robotcode"
]
}

0 comments on commit 98333eb

Please sign in to comment.