Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-strassner authored Jan 8, 2025
2 parents 86c7380 + 04b59b5 commit e7a7c8b
Show file tree
Hide file tree
Showing 317 changed files with 43,713 additions and 862 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ updates:
- dependency-name: "minimatch"
versions: [ ">= 10.0.0"]
groups:
# Ships separately from other typespec packages
typespec-client-generator-cli:
patterns:
- "@azure-tools/typespec-client-generator-cli"
typespec:
patterns:
- "*typespec*"
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/spelling.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: SpellCheck

on: pull_request

jobs:
spellcheck:
name: SpellCheck
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Run spelling check
run: |
./eng/common/scripts/check-spelling-in-changed-files.ps1 `
-CSpellConfigPath 'cSpell.json' `
-SourceCommittish HEAD `
-TargetCommittish HEAD^ `
-ExitWithError
if ($LASTEXITCODE) {
Write-Host "Spelling errors found in changed files. See https://aka.ms/ci-fix#spell-check"
exit $LASTEXITCODE
}
shell: pwsh
14 changes: 3 additions & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,7 @@
},
"[markdown]": {
"editor.rulers": [
{
"column": 120,
"color": "#ff0000c0"
}
{ "column": 120, "color": "#ff0000c0" }
]
},
"workbench.colorCustomizations": {
"activityBar.background": "#501B29",
"titleBar.activeBackground": "#702639",
"titleBar.activeForeground": "#FEFBFC"
},
}
},
}
18 changes: 16 additions & 2 deletions cSpell.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1",
"version": "0.2",
"language": "en",
"words": [
"authnotrequired",
Expand All @@ -26,7 +26,8 @@
"ignorePaths": [
"node_modules/**",
"**/examples/**",
"**/package-lock.json"
"**/package-lock.json",
"cSpell.json",
],
"ignoreRegExpList": [
"v\\d",
Expand Down Expand Up @@ -1768,6 +1769,19 @@
"webapi",
"genevametrics"
]
},
{
"filename": "**/specification/compute/resource-manager/readme.md",
"words": [
"Cloudservice"
]
},
{
"filename": "**/specification/compute/resource-manager/readme.python.md",
"words": [
"multiapiscript",
"modelerfour"
]
}
],
"enableFiletypes": [
Expand Down
Loading

0 comments on commit e7a7c8b

Please sign in to comment.