| 1 | [codespell] |
| 2 | # Ref: https://github.com/codespell-project/codespell#using-a-config-file |
| 3 | skip = .git*,node_modules,package-lock.json,*.css,.codespellrc,react |
| 4 | check-hidden = true |
| 5 | # Ignore super long lines -- must be minimized etc, acronyms |
| 6 | # and some near hit variables |
| 7 | ignore-regex = ^.{120,}|\b(currentY|FOM)\b |
| 8 | # ignore-words-list = |
| 9 |