mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-06 23:32:12 +03:00
Assign unique aliases to HuggingChat, Kimi Web, and Qwen Web so they no longer shadow primary providers or trigger startup warnings. Add a unit test to enforce provider alias uniqueness and prevent future collisions. Also expand local ignore and VS Code exclude rules for agent, build, and worktree artifacts.
70 lines
1.6 KiB
JSON
70 lines
1.6 KiB
JSON
{
|
|
"workbench.sideBar.location": "left",
|
|
"css.lint.unknownAtRules": "ignore",
|
|
"sonarlint.rules": {
|
|
"css:S4662": {
|
|
"level": "off"
|
|
},
|
|
"javascript:S6747": {
|
|
"level": "off"
|
|
},
|
|
"javascript:S7764": {
|
|
"level": "off"
|
|
},
|
|
"javascript:S6772": {
|
|
"level": "off"
|
|
},
|
|
"javascript:S3776": {
|
|
"level": "off"
|
|
}
|
|
},
|
|
"git.ignoreLimitWarning": true,
|
|
// "files.exclude": {
|
|
// "**/_references": true,
|
|
// "**/_mono_repo": true,
|
|
// "**/electron": true,
|
|
// "**/node_modules": true,
|
|
// "**/.next": true,
|
|
// "**/coverage": true,
|
|
// "**/omniroute-*.tgz": true,
|
|
// "**/_tasks": true
|
|
// },
|
|
"files.watcherExclude": {
|
|
"**/_references/**": true,
|
|
"**/_mono_repo/**": true,
|
|
"**/electron/**": true,
|
|
"**/node_modules/**": true,
|
|
"**/.next/**": true,
|
|
"**/coverage/**": true,
|
|
"**/_tasks/**": true,
|
|
"**/.git/objects/**": true,
|
|
"**/dist/**": true,
|
|
"**/build/**": true,
|
|
"**/out/**": true,
|
|
"**/.cache/**": true,
|
|
"**/.turbo/**": true,
|
|
"**/OmniRoute-*/**": true,
|
|
"**/*-merge-*/**": true,
|
|
"**/*-worktree-*/**": true,
|
|
"**/*-issues-*/**": true,
|
|
"**/*-reorg*/**": true
|
|
},
|
|
"search.exclude": {
|
|
"**/_references": true,
|
|
"**/_mono_repo": true,
|
|
"**/electron": true,
|
|
"**/node_modules": true,
|
|
"**/.next": true,
|
|
"**/coverage": true,
|
|
"**/_tasks": true,
|
|
"**/dist": true,
|
|
"**/build": true,
|
|
"**/out": true,
|
|
"**/OmniRoute-*": true,
|
|
"**/*-merge-*": true,
|
|
"**/*-worktree-*": true,
|
|
"**/*-issues-*": true,
|
|
"**/*-reorg*": true
|
|
}
|
|
}
|