diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..d1b77b2 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,9 @@ +{ + "recommendations": [ + "DavidAnson.vscode-markdownlint", + "esbenp.prettier-vscode", + "rust-lang.rust-analyzer", + "streetsidesoftware.code-spell-checker", + "usernamehw.errorlens" + ] +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..e96704d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,41 @@ +{ + // 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": [ + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'commitlint'", + "cargo": { + "args": ["build", "--bin=commitlint", "--package=commitlint-rs"], + "filter": { + "name": "commitlint", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'commitlint'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=commitlint", + "--package=commitlint-rs" + ], + "filter": { + "name": "commitlint", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +}