-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update vscode settings and gitignore
- 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
1 parent
6eed43a
commit c98ec5a
Showing
4 changed files
with
13 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,3 @@ | ||
{ | ||
"recommendations": ["redhat.vscode-yaml"] | ||
} |
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,8 @@ | ||
{ | ||
"yaml.schemas": { | ||
"https://raw.githubusercontent.com/Undertone0809/gcop/main/config-schema.json": [ | ||
"/Users/*/.zeeland/gcop/config.yaml", | ||
"~/.zeeland/gcop/config.yaml" | ||
] | ||
}, | ||
} |
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 |
---|---|---|
|
@@ -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" | ||
|