diff --git a/.codespellrc b/.codespellrc new file mode 100644 index 00000000000..1ae008d814b --- /dev/null +++ b/.codespellrc @@ -0,0 +1,2 @@ +[codespell] +ignore-words = .github/codespell_ignore_words.txt diff --git a/.github/codespell_ignore_words.txt b/.github/codespell_ignore_words.txt new file mode 100644 index 00000000000..655ca804f98 --- /dev/null +++ b/.github/codespell_ignore_words.txt @@ -0,0 +1,29 @@ +adaptee +allright +ans +arithmetics +asend +ba +circularly +clos +clos +complies +crate +daa +dum +extraversion +fo +hda +iif +ist +nd +nd +ned +oder +pullrequest +recuse +reenable +searchin +therefor +theses +warmup diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 00000000000..f9af9ccaaee --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,12 @@ +name: Codespell + +on: [push, pull_request] + +jobs: + codespell: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: codespell-project/actions-codespell@master + with: + ignore_words_file: .github/codespell_ignore_words.txt