mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
chore: remove typos spell checker
This commit is contained in:
@@ -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'
|
||||
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
[default.extend-words]
|
||||
|
||||
[files]
|
||||
extend-exclude = [
|
||||
"**/node_modules/**",
|
||||
"**/voices.json",
|
||||
]
|
||||
Reference in New Issue
Block a user