feat: Add Zed editor rule profile with agent rules and MCP config (#974)

* zed profile

* add changeset

* update changeset
This commit is contained in:
Joe Danziger
2025-07-16 12:13:21 -04:00
committed by Ralph Khreish
parent 6c5e0f97f8
commit b0e09c76ed
9 changed files with 516 additions and 5 deletions

View File

@@ -22,7 +22,8 @@ describe('Rule Transformer - General', () => {
'roo',
'trae',
'vscode',
'windsurf'
'windsurf',
'zed'
];
expectedProfiles.forEach((profile) => {
expect(RULE_PROFILES).toContain(profile);
@@ -229,6 +230,11 @@ describe('Rule Transformer - General', () => {
mcpConfig: true,
mcpConfigName: 'mcp.json',
expectedPath: '.windsurf/mcp.json'
},
zed: {
mcpConfig: true,
mcpConfigName: 'settings.json',
expectedPath: '.zed/settings.json'
}
};