This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
example settings and recommended extensions added
- Loading branch information
1 parent
a5fe1ea
commit 98333eb
Showing
4 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"robotcode.robot.variables": { | ||
"ROOT": "/workspaces/robotframework-openapidriver" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |