Commit 094836a9 authored by Jan Reimes's avatar Jan Reimes
Browse files

feat(vscode): add commit message guidelines and settings for Copilot

- Introduce a new markdown file for commit message guidelines
- Update settings to reference the new guidelines for GitHub Copilot
parent b22497f9
Loading
Loading
Loading
Loading
+140 −150
Original line number Diff line number Diff line
{
	"folders": [
		{
			"path": "."
		}
	],
	"settings": {
		"github.copilot.chat.commitMessageGeneration.instructions": [
			{
				"file": ".github/commit-instructions.md"
			}
		]
	},
	"launch": {
    // 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": "Debug: crawl-meetings (max. 5)",
				"type": "debugpy",
@@ -148,4 +139,3 @@
			}
		]
}
 No newline at end of file
}
 No newline at end of file

.vscode/settings.json

0 → 100644
+7 −0
Original line number Diff line number Diff line
{
    "github.copilot.chat.commitMessageGeneration.instructions": [
        {
            "file": "${workspaceFolder}/.vscode/commit-instructions.md"
        }
    ]
}
 No newline at end of file