Skip to content
Merged
File renamed without changes.
27 changes: 27 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Spell Check

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5

- name: Spellcheck
uses: rojopolis/spellcheck-github-actions@v0
with:
config_path: .spellcheck.yml
output_file: spellcheck-output.txt

- name: Upload Spellcheck Output
uses: actions/upload-artifact@v4
if: '!cancelled()' # Only upload artifact if job was not cancelled
with:
name: Spellcheck Output
path: spellcheck-output.txt
16 changes: 16 additions & 0 deletions .spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
matrix:
- name: Markdown
aspell:
lang: en_GB
encoding: utf-8
wordlists:
- .wordlist.txt
pipeline:
- pyspelling.filters.markdown:
- pyspelling.filters.html:
comments: false
ignores:
- code
- pre
sources:
- '**/*.md'
16 changes: 16 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Blazor
DTO
DTOs
Interactors
Adapters
Adapter
UI
IWeatherForecastService
MockWeatherForecastRepository
WeatherForecast
WeatherForecastDto
repo
learnings
md
BlazorWebApp
EF
3 changes: 0 additions & 3 deletions UnmessyExample.slnx
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<Solution>
<Folder Name="/.github/">
<File Path="copilot-instructions.md" />
</Folder>
<Folder Name="/docs/">
<File Path="README.md" />
<File Path="UNCLE-BOB.md" />
Expand Down