codespell-project / actions-codespell

MIT License
74 stars 19 forks source link

Add parameter `uri_ignore_words_list` #36

Closed DimitriPapadopoulos closed 2 years ago

DimitriPapadopoulos commented 3 years ago

Does it make sense? Seems useful to share words between developers running codespell locally and CI.

DimitriPapadopoulos commented 3 years ago

uri_regex might be useful too, but I would start only with uri_ignore_words_list since regex is not provided either.

peternewman commented 3 years ago

Feel free to add as few, or as many options as you'd like. Although since the new config file stuff in Codespell, personally I've gone to using that, which takes

Seems useful to share between developers running codespell locally and CI.

To the next level!

DimitriPapadopoulos commented 3 years ago

Oh, I also use config files, setup.cfg when it exists, and .codespellrc in non-Python projects. For projects with dozens of false positives, a separate file to list the false positives might be interesting.

DimitriPapadopoulos commented 3 years ago

I've started working on this, see #35. But how can I test?