these words are either * shortened words: strategy => strat, read_from_primary => fro * or acronyms: node_or_data => nd before we rename them with better names, let's just add them to the ignore word list. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes scylladb/scylladb#17002
18 lines
465 B
YAML
18 lines
465 B
YAML
name: codespell
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
permissions: {}
|
|
jobs:
|
|
codespell:
|
|
name: Check for spelling errors
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: codespell-project/actions-codespell@master
|
|
with:
|
|
only_warn: 1
|
|
ignore_words_list: "ans,datas,fo,ser,ue,crate,nd,reenable,strat,stap,te"
|
|
skip: "./.git,./build,./tools,*.js,*.thrift,*.lock,./test,./licenses"
|