8000 Add codespell (config, workflow, pre-commit) to detect new typos, fix found typos by yarikoptic · Pull Request #540 · pyparsing/pyparsing · GitHub
[go: up one dir, main page]

Skip to content

Add codespell (config, workflow, pre-commit) to detect new typos, fix found typos #540

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Custom skips for codespell
  • Loading branch information
yarikoptic committed Feb 15, 2024
commit ba14369de9527fb6e2a88b146907cdf9aea4e754
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ exclude = [

[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git'
skip = '.git,hola_mundo.py'
check-hidden = true
# ignore-regex = ''
# ignore-words-list = ''
# case sensitive names, lines likely with regexpressions
ignore-regex = '\b(OnlyOnce|fontEnd|Nd|Ned|Bu|Donn|[a-zA-Z]*\*[a-zA-Z]*)\b|.*\(.*\|.*\).*|itemsvisibles visibles'
ignore-words-list = 'inout,halp,strng,te,ans,strin,datas,helpe,fourty'
0