mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-12-19 06:58:15 +08:00
* Auto-update DIRECTORY.md
* chore: remove ignored code files
* chore: ignore more words
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
14 lines
358 B
YAML
14 lines
358 B
YAML
name: codespell
|
|
on: [push, pull_request]
|
|
jobs:
|
|
codespell:
|
|
name: Check for spelling errors
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: codespell-project/actions-codespell@master
|
|
with:
|
|
# file types to ignore
|
|
skip: "*.json,*.yml,DIRECTORY.md"
|
|
ignore_words_list: "ba,esy,yse"
|