Skip to content

Commit

Permalink
mark down lint & incorrect spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Mar 21, 2024
1 parent 2733d24 commit 563cab8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[codespell]
skip = *.pulsar.go,*.pb.go,*.pb.gw.go,*.cosmos_orm.go,*.json,*.git,*.js,crypto/keys,fuzz,*.h,proto/tendermint,*.bin,*.sum,*.mod,*_test.go
ignore-words-list = userA,users,create,crate
count =
quiet-level = 3
9 changes: 9 additions & 0 deletions .github/workflows/markdown-linter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Check Markdown links
on:
pull_request:
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gaurav-nelson/[email protected]
16 changes: 16 additions & 0 deletions .github/workflows/mispell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Fix typos nightly

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run codespell
continue-on-error: true
run: |
# .codespellrc is used
sudo apt-get install codespell -y
codespell -w --config .codespellrc

0 comments on commit 563cab8

Please sign in to comment.