-
Notifications
You must be signed in to change notification settings - Fork 0
feat(angular-mcp-server): add violation grouping tool #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 7 commits
9734ad9
b29ed61
244317e
f8761c2
a9b0f0d
e661c57
2ad2aab
26f0982
3e25729
c0f9743
3b225d8
8fb3707
ccb446c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ export const diffComponentContractSchema: ToolSchemaOptions = { | |
| saveLocation: { | ||
| type: 'string', | ||
| description: | ||
| 'Path where to save the diff result file. Supports both absolute and relative paths.', | ||
| 'Path where to save the diff result file. Supports both absolute and relative paths. If not provided, defaults to tmp/.angular-toolkit-mcp/contracts/diffs/<component-name>-diff.json', | ||
| }, | ||
| contractBeforePath: { | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Contract diff has a default saveLocation path, would be good to have an unified approach to provide same default location for contractBefore-*/afterPath
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I improved schemas, but not sure we want to have explicit before/after folders. |
||
| type: 'string', | ||
|
|
@@ -32,7 +32,7 @@ export const diffComponentContractSchema: ToolSchemaOptions = { | |
| default: '', | ||
| }, | ||
| }, | ||
| required: ['saveLocation', 'contractBeforePath', 'contractAfterPath'], | ||
| required: ['contractBeforePath', 'contractAfterPath'], | ||
| }, | ||
| annotations: { | ||
| title: 'Diff Component Contract', | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.