aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-09-28 16:36:09 -0500
committerToby Vincent <tobyv13@gmail.com>2022-09-28 16:36:09 -0500
commitfa114ff75055b4464f8152e1f0a7142fffbd4fd5 (patch)
tree0405061798bce6ad169fc0fc686e778c5f4c5856
parent29ae86e6fb29cec92651e1f95b3c7067db2414d4 (diff)
revert: remove vscode related files
-rw-r--r--.vscode/launch.json186
-rw-r--r--.vscode/settings.json10
2 files changed, 0 insertions, 196 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 80ae755..0000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,186 +0,0 @@
-{
- // 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": [
- // zone - library (unit tests)
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in library 'zone'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--lib",
- "--package=zone"
- ],
- "filter": {
- "name": "zone",
- "kind": "lib"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}",
- "presentation": {
- "hidden": false,
- "group": "zone",
- }
- },
- // zone - executable
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug executable 'zone'",
- "cargo": {
- "args": [
- "build",
- "--bin=zone",
- "--package=zone"
- ],
- "filter": {
- "name": "zone",
- "kind": "bin"
- }
- },
- "args": [
- "list"
- ],
- "cwd": "${workspaceFolder}",
- "presentation": {
- "hidden": false,
- "group": "zone",
- }
- },
- // zone - executable (unit tests)
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in executable 'zone'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--bin=zone",
- "--package=zone"
- ],
- "filter": {
- "name": "zone",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}",
- "presentation": {
- "hidden": false,
- "group": "zone",
- }
- },
- // zone_core - library (unit tests)
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in library 'zone_core'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--lib",
- "--package=zone_core"
- ],
- "filter": {
- "name": "zone_core",
- "kind": "lib"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}",
- "presentation": {
- "hidden": false,
- "group": "zone_core",
- }
- },
- // zoned - library (unit tests)
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in library 'zoned'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--lib",
- "--package=zoned"
- ],
- "filter": {
- "name": "zoned",
- "kind": "lib"
- }
- },
- "args": [],
- "env": {
- "RUST_LOG": "debug"
- },
- "cwd": "${workspaceFolder}",
- "presentation": {
- "hidden": false,
- "group": "zoned",
- }
- },
- // zoned - executable
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug executable 'zoned'",
- "cargo": {
- "args": [
- "build",
- "--bin=zoned",
- "--package=zoned"
- ],
- "filter": {
- "name": "zoned",
- "kind": "bin"
- }
- },
- "args": [],
- "env": {
- "RUST_LOG": "debug"
- },
- "cwd": "${workspaceFolder}",
- "terminal": "console",
- "presentation": {
- "hidden": false,
- "group": "zoned",
- },
- },
- // zoned - executable (unit tests)
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in executable 'zoned'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--bin=zoned",
- "--package=zoned"
- ],
- "filter": {
- "name": "zoned",
- "kind": "bin"
- }
- },
- "args": [],
- "env": {
- "RUST_LOG": "debug"
- },
- "cwd": "${workspaceFolder}",
- "presentation": {
- "hidden": false,
- "group": "zoned",
- },
- },
- ]
-} \ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index 9144f69..0000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "conventionalCommits.scopes": [
- "zone",
- "zoned",
- "zfs",
- "nspawn",
- "core",
- "git"
- ]
-} \ No newline at end of file