Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
kazrael2119 committed Dec 2, 2024
2 parents a93ffa4 + 5aa1758 commit 6e2ccdc
Show file tree
Hide file tree
Showing 4,274 changed files with 146,003 additions and 80,714 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
9 changes: 9 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,9 @@ sdk/ai/ai-inference-rest @glharper @dargilco @jhakulin
# Managment API review files
/sdk/**/review/arm-*.api.md @qiaozha @MaryGao @Azure/azure-sdk-for-js-core

# Cosmos API review files
/sdk/cosmosdb/cosmos/review/*api.md @amanrao23 @aditishree1 @sajeetharan @topshot99

# Management Plane
# PRLabel: %Mgmt
/sdk/advisor/arm-advisor/ @qiaozha @MaryGao
Expand Down Expand Up @@ -401,6 +404,9 @@ sdk/ai/ai-inference-rest @glharper @dargilco @jhakulin
# PRLabel: %Mgmt
/sdk/communication/arm-communication/ @qiaozha @MaryGao

# PRLabel: %Mgmt
/sdk/connectedcache/arm-connectedcache/ @qiaozha @MaryGao

# PRLabel: %Mgmt
/sdk/compute/arm-compute/ @qiaozha @MaryGao

Expand Down Expand Up @@ -912,6 +918,9 @@ sdk/ai/ai-inference-rest @glharper @dargilco @jhakulin
# PRLabel: %Mgmt
/sdk/timeseriesinsights/arm-timeseriesinsights/ @qiaozha @MaryGao

# PRLabel: %Mgmt
/sdk/terraform/arm-terraform/ @qiaozha @MaryGao

# PRLabel: %Mgmt
/sdk/trafficmanager/arm-trafficmanager/ @qiaozha @MaryGao

Expand Down
31 changes: 31 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "test:vitest",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"runtimeArgs": ["dev-tool", "run", "test:vitest"],
"args": ["--", "--inspect-brk", "--no-file-parallelism", "${input:filename}"],
"autoAttachChildProcesses": false,
"skipFiles": ["<node_internals>/**"],
"console": "integratedTerminal",
"attachSimplePort": 9229,
"cwd": "${workspaceFolder}/sdk/${input:package-directory}"
}
],
"inputs": [
{
"id": "filename",
"type": "promptString",
"description": "(Optional) Enter a part of the test file name (e.g. 'foo' will run 'foo.spec.ts', 'notfoo.spec.ts', 'test.foo.spec.ts', etc.)",
"default": ""
},
{
"id": "package-directory",
"type": "promptString",
"description": "Enter the package directory (e.g., 'identity/identity', 'keyvault/keyvault-keys', etc.)"
}
]
}
3 changes: 1 addition & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.DS_Store": true,
"**/node_modules": true
"**/.DS_Store": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
Expand Down
14 changes: 14 additions & 0 deletions common/config/rush/command-line.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,20 @@
"enableParallelism": true,
"ignoreMissingScript": true
},
{
"commandKind": "bulk",
"name": "typecheck",
"summary": "type check files that are not part of the build",
"enableParallelism": true,
"ignoreMissingScript": true
},
{
"commandKind": "bulk",
"name": "update-snippets",
"summary": "Replace snippets placeholders with code extracted from TypeScript files",
"enableParallelism": true,
"ignoreMissingScript": true
},
{
"commandKind": "bulk",
"name": "lint:fix",
Expand Down
Loading

0 comments on commit 6e2ccdc

Please sign in to comment.