Skip to content

Commit

Permalink
chore: update vscode settings and gitignore
Browse files Browse the repository at this point in the history
- Add .vscode/settings.json with YAML schema configuration
- Update .gitignore to include .vscode/settings.json
- Add .vscode/extensions.json with recommended extensions

These changes improve the development environment by ensuring proper YAML schema validation and managing VSCode settings and extensions.
  • Loading branch information
Undertone0809 committed Jan 4, 2025
1 parent 6eed43a commit c98ec5a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ dmypy.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/settings.json

### VisualStudioCode Patch ###
# Ignore all local history of files
Expand Down
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["redhat.vscode-yaml"]
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"yaml.schemas": {
"https://raw.githubusercontent.com/Undertone0809/gcop/main/config-schema.json": [
"/Users/*/.zeeland/gcop/config.yaml",
"~/.zeeland/gcop/config.yaml"
]
},
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "gcop"
version = "1.7.3"
description = "gcop is your git AI copilot."
readme = "README.md"
authors = ["gcop <[email protected]>"]
authors = ["Zeeland <[email protected]>"]
license = "MIT"
repository = "https://github.com/Undertone0809/gcop"
homepage = "https://github.com/Undertone0809/gcop"
Expand Down

0 comments on commit c98ec5a

Please sign in to comment.