forked from Mudlet/Mudlet
-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (33 loc) · 1.03 KB
/
codespell-analysis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# GitHub Action to automate the identification of common misspellings in text files.
# https://github.com/codespell-project/actions-codespell
# https://github.com/codespell-project/codespell
name: codespell
on:
push:
branches: [master, development, release-*]
tags: [Mudlet-*]
pull_request:
workflow_dispatch:
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/codespell-problem-matcher@v1
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
skip: >-
./.git,
./3rdparty,
./translations,
./src/fonts,
./src/mudlet-lua/lua/utf8_filenames.lua,
./src/AnnouncerWindows.cpp, # 'Teh' is a proper last name
./squish-tests,
*.aff,
*.dic,
*.ts
ignore_words_file: ./.github/codespell-wordlist.txt
builtin: 'clear,code,rare,informal,names'