Skip to content

Commit

Permalink
chore: add cspell
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoch committed Feb 4, 2025
1 parent ef7cf44 commit de7166d
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI
on: [push]

jobs:
cspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
cache-dependency-path: '**/.github/workflows/ci.yml'

- run: npx cspell --no-progress '**'
10 changes: 10 additions & 0 deletions cspell.config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: "0.2"
dictionaries:
- english
- sql
- project-words
- ethereum
dictionaryDefinitions:
- name: project-words
path: ./project-words.txt
addWords: true
5 changes: 5 additions & 0 deletions project-words.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
secp256k1
kwil
nocase
idos
encryptor

0 comments on commit de7166d

Please sign in to comment.