chore: remove typos spell checker

This commit is contained in:
Acbox
2026-03-19 13:50:39 +08:00
parent d3dafce615
commit 24e04bde3b
4 changed files with 1 additions and 42 deletions
-30
View File
@@ -1,30 +0,0 @@
name: Spell Check
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
typos:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Check for typos
uses: crate-ci/typos@v1.43.4
- name: Typos info
if: failure()
run: |
echo 'To check for a diff, run `mise x typos -- typos --diff`'
echo 'To fix typos, please run `mise x typos -- typos -w`'
echo 'You can find typos here: https://crates.io/crates/typos'
echo 'if you use VSCode, you can also install `Typos Spell Checker`'
echo 'You can find the extension here: https://marketplace.visualstudio.com/items?itemName=tekumara.typos-vscode'
+1 -3
View File
@@ -50,7 +50,6 @@ Infrastructure dependencies:
- **Package Managers**: pnpm (frontend monorepo), Go modules (backend)
- **Linting**: golangci-lint (Go), ESLint + typescript-eslint + vue-eslint-parser (TypeScript)
- **Testing**: Vitest
- **Typo Checker**: typos
- **Version Management**: bumpp
- **SDK Generation**: @hey-api/openapi-ts
@@ -170,8 +169,7 @@ Memoh/
├── bump.config.ts # Version bumping config (bumpp)
├── vitest.config.ts # Test framework config (Vitest)
├── tsconfig.json # TypeScript monorepo config
── eslint.config.mjs # ESLint config
└── typos.toml # Typo checker config
── eslint.config.mjs # ESLint config
```
## Development Guide
-2
View File
@@ -11,8 +11,6 @@ bun = "latest"
pnpm = "10"
# sqlc for sql management
sqlc = "latest"
# typos for spell check
typos = "latest"
# golangci-lint for Go linting
"golangci-lint" = "2.10.1"
-7
View File
@@ -1,7 +0,0 @@
[default.extend-words]
[files]
extend-exclude = [
"**/node_modules/**",
"**/voices.json",
]