diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 68188d6668..505dee8bec 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -17,3 +17,4 @@ jobs: check_filenames: true # When using this Action in other repos, the --skip option below can be removed skip: "./.git,./codespell_lib/data,./example/code.c,test_basic.py,*.pyc,README.rst,pyproject-codespell.precommit-toml" + ignore-words-list: "adn,master,uint,wrod" diff --git a/pyproject.toml b/pyproject.toml index cb158691be..dfbea31714 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -86,10 +86,10 @@ codespell_lib = [ ] # TODO: reintegrate codespell configuration after updating test cases -#[tool.codespell] -#builtin = ["clear","rare","informal","usage","code","names"] -#ignore-words-list = ["uint"] -#skip=[ "./.*","codespell_lib/data/*","codespell_lib/tests/*"] +[tool.codespell] +builtin = ["clear","rare","informal","usage","code","names"] +ignore-words-list = ["adn,master,uint,wrod"] +skip=[ "./.*","./codespell_lib/data","./codespell_lib/tests,./example/code.c"] [tool.mypy] pretty = true